-------------------------------- -- @module DrawNode -- @extend Node -- @parent_module cc -------------------------------- -- Draw an line from origin to destination with color.
-- param origin The line origin.
-- param destination The line destination.
-- param color The line color.
-- js NA -- @function [parent=#DrawNode] drawLine -- @param self -- @param #vec2_table origin -- @param #vec2_table destination -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- @overload self, vec2_table, vec2_table, vec2_table, vec2_table, color4f_table -- @overload self, vec2_table, vec2_table, color4f_table -- @function [parent=#DrawNode] drawRect -- @param self -- @param #vec2_table p1 -- @param #vec2_table p2 -- @param #vec2_table p3 -- @param #vec2_table p4 -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- @overload self, vec2_table, float, float, unsigned int, color4f_table -- @overload self, vec2_table, float, float, unsigned int, float, float, color4f_table -- @function [parent=#DrawNode] drawSolidCircle -- @param self -- @param #vec2_table center -- @param #float radius -- @param #float angle -- @param #unsigned int segments -- @param #float scaleX -- @param #float scaleY -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- js NA -- @function [parent=#DrawNode] onDrawGLPoint -- @param self -- @param #mat4_table transform -- @param #unsigned int flags -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- draw a dot at a position, with a given radius and color.
-- param pos The dot center.
-- param radius The dot radius.
-- param color The dot color. -- @function [parent=#DrawNode] drawDot -- @param self -- @param #vec2_table pos -- @param #float radius -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- draw a segment with a radius and color.
-- param from The segment origin.
-- param to The segment destination.
-- param radius The segment radius.
-- param color The segment color. -- @function [parent=#DrawNode] drawSegment -- @param self -- @param #vec2_table from -- @param #vec2_table to -- @param #float radius -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- Get the color mixed mode.
-- lua NA -- @function [parent=#DrawNode] getBlendFunc -- @param self -- @return BlendFunc#BlendFunc ret (return value: cc.BlendFunc) -------------------------------- -- js NA -- @function [parent=#DrawNode] onDraw -- @param self -- @param #mat4_table transform -- @param #unsigned int flags -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- @overload self, vec2_table, float, float, unsigned int, bool, color4f_table -- @overload self, vec2_table, float, float, unsigned int, bool, float, float, color4f_table -- @function [parent=#DrawNode] drawCircle -- @param self -- @param #vec2_table center -- @param #float radius -- @param #float angle -- @param #unsigned int segments -- @param #bool drawLineToCenter -- @param #float scaleX -- @param #float scaleY -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- Draws a quad bezier path.
-- param origin The origin of the bezier path.
-- param control The control of the bezier path.
-- param destination The destination of the bezier path.
-- param segments The The number of segments.
-- param color Set the quad bezier color. -- @function [parent=#DrawNode] drawQuadBezier -- @param self -- @param #vec2_table origin -- @param #vec2_table control -- @param #vec2_table destination -- @param #unsigned int segments -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- js NA -- @function [parent=#DrawNode] onDrawGLLine -- @param self -- @param #mat4_table transform -- @param #unsigned int flags -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- draw a triangle with color.
-- param p1 The triangle vertex point.
-- param p2 The triangle vertex point.
-- param p3 The triangle vertex point.
-- param color The triangle color.
-- js NA -- @function [parent=#DrawNode] drawTriangle -- @param self -- @param #vec2_table p1 -- @param #vec2_table p2 -- @param #vec2_table p3 -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- Set the color mixed mode.
-- code
-- When this function bound into js or lua,the parameter will be changed
-- In js: var setBlendFunc(var src, var dst)
-- endcode
-- lua NA -- @function [parent=#DrawNode] setBlendFunc -- @param self -- @param #cc.BlendFunc blendFunc -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- Clear the geometry in the node's buffer. -- @function [parent=#DrawNode] clear -- @param self -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- Draws a solid rectangle given the origin and destination point measured in points.
-- The origin and the destination can not have the same x and y coordinate.
-- param origin The rectangle origin.
-- param destination The rectangle destination.
-- param color The rectangle color.
-- js NA -- @function [parent=#DrawNode] drawSolidRect -- @param self -- @param #vec2_table origin -- @param #vec2_table destination -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- Draw a point.
-- param point A Vec2 used to point.
-- param pointSize The point size.
-- param color The point color.
-- js NA -- @function [parent=#DrawNode] drawPoint -- @param self -- @param #vec2_table point -- @param #float pointSize -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- Draw a cubic bezier curve with color and number of segments
-- param origin The origin of the bezier path.
-- param control1 The first control of the bezier path.
-- param control2 The second control of the bezier path.
-- param destination The destination of the bezier path.
-- param segments The The number of segments.
-- param color Set the cubic bezier color. -- @function [parent=#DrawNode] drawCubicBezier -- @param self -- @param #vec2_table origin -- @param #vec2_table control1 -- @param #vec2_table control2 -- @param #vec2_table destination -- @param #unsigned int segments -- @param #color4f_table color -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- creates and initialize a DrawNode node.
-- return Return an autorelease object. -- @function [parent=#DrawNode] create -- @param self -- @return DrawNode#DrawNode ret (return value: cc.DrawNode) -------------------------------- -- -- @function [parent=#DrawNode] draw -- @param self -- @param #cc.Renderer renderer -- @param #mat4_table transform -- @param #unsigned int flags -- @return DrawNode#DrawNode self (return value: cc.DrawNode) -------------------------------- -- -- @function [parent=#DrawNode] init -- @param self -- @return bool#bool ret (return value: bool) -------------------------------- -- -- @function [parent=#DrawNode] DrawNode -- @param self -- @return DrawNode#DrawNode self (return value: cc.DrawNode) return nil