Cocos2d-x  v3.17
All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Groups Pages
cocos2d::DrawPrimitives Namespace Reference

/ More...

Functions

void free ()
 Frees allocated resources by the drawing primitives.
 
void drawPoint (const Vec2 &point)
 Draws a point given x and y coordinate measured in points. More...
 
void drawPoints (const Vec2 *points, unsigned int numberOfPoints)
 Draws an array of points. More...
 
void drawLine (const Vec2 &origin, const Vec2 &destination)
 Draws a line given the origin and destination point measured in points. More...
 
void drawRect (Vec2 origin, Vec2 destination)
 Draws a rectangle given the origin and destination point measured in points. More...
 
void drawSolidRect (Vec2 origin, Vec2 destination, Color4F color)
 Draws a solid rectangle given the origin and destination point measured in points. More...
 
void drawPoly (const Vec2 *vertices, unsigned int numOfVertices, bool closePolygon)
 Draws a polygon given a pointer to point coordinates and the number of vertices measured in points. More...
 
void drawSolidPoly (const Vec2 *poli, unsigned int numberOfPoints, Color4F color)
 Draws a solid polygon given a pointer to CGPoint coordinates, the number of vertices measured in points, and a color. More...
 
void drawCircle (const Vec2 &center, float radius, float angle, unsigned int segments, bool drawLineToCenter, float scaleX, float scaleY)
 Draws a circle given the center, radius and number of segments. More...
 
void drawCircle (const Vec2 &center, float radius, float angle, unsigned int segments, bool drawLineToCenter)
 Draws a circle given the center, radius and number of segments. More...
 
void drawSolidCircle (const Vec2 &center, float radius, float angle, unsigned int segments, float scaleX, float scaleY)
 Draws a solid circle given the center, radius and number of segments. More...
 
void drawSolidCircle (const Vec2 &center, float radius, float angle, unsigned int segments)
 Draws a solid circle given the center, radius and number of segments. More...
 
void drawQuadBezier (const Vec2 &origin, const Vec2 &control, const Vec2 &destination, unsigned int segments)
 Draws a quad bezier path. More...
 
void drawCubicBezier (const Vec2 &origin, const Vec2 &control1, const Vec2 &control2, const Vec2 &destination, unsigned int segments)
 Draws a cubic bezier path. More...
 
void drawCatmullRom (PointArray *arrayOfControlPoints, unsigned int segments)
 Draws a Catmull Rom path. More...
 
void drawCardinalSpline (PointArray *config, float tension, unsigned int segments)
 Draws a Cardinal Spline path. More...
 
void setDrawColor4B (GLubyte r, GLubyte g, GLubyte b, GLubyte a)
 Set the drawing color with 4 unsigned bytes. More...
 
void setDrawColor4F (GLfloat r, GLfloat g, GLfloat b, GLfloat a)
 Set the drawing color with 4 floats. More...
 
void setPointSize (GLfloat pointSize)
 Set the point size in points. More...
 

Detailed Description

/

Function Documentation

void
cocos2d::DrawPrimitives::drawPoint
( const Vec2 &  point)

Draws a point given x and y coordinate measured in points.

Parameters
pointA Vec2 with a point given x and y coordinate.
void
cocos2d::DrawPrimitives::drawPoints
( const Vec2 *  points,
unsigned int  numberOfPoints 
)

Draws an array of points.

Parameters
pointsA point coordinates.
numberOfPointsThe number of points.
Since
v0.7.2
void
cocos2d::DrawPrimitives::drawLine
( const Vec2 &  origin,
const Vec2 &  destination 
)

Draws a line given the origin and destination point measured in points.

Parameters
originA Vec2 Type point used to the line origin.
destinationA Vec2 Type point used to the line destination.
void
cocos2d::DrawPrimitives::drawRect
( Vec2  origin,
Vec2  destination 
)

Draws a rectangle given the origin and destination point measured in points.

The origin and the destination can not have the same x and y coordinate.

Parameters
originThe rectangle origin.
destinationThe rectangle destination.
void
cocos2d::DrawPrimitives::drawSolidRect
( Vec2  origin,
Vec2  destination,
Color4F  color 
)

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.

Parameters
originThe rectangle origin.
destinationThe rectangle destination.
colorThe rectangle color.
Since
1.1
void
cocos2d::DrawPrimitives::drawPoly
( const Vec2 *  vertices,
unsigned int  numOfVertices,
bool  closePolygon 
)

Draws a polygon given a pointer to point coordinates and the number of vertices measured in points.

The polygon can be closed or open.

Parameters
verticesA pointer to point coordinates.
numOfVerticesThe number of vertices measured in points.
closePolygonThe polygon can be closed or open.
void
cocos2d::DrawPrimitives::drawSolidPoly
( const Vec2 *  poli,
unsigned int  numberOfPoints,
Color4F  color 
)

Draws a solid polygon given a pointer to CGPoint coordinates, the number of vertices measured in points, and a color.

Parameters
poliA solid polygon given a pointer to CGPoint coordinates.
numberOfPointsThe number of vertices measured in points.
colorThe solid polygon color.
void
cocos2d::DrawPrimitives::drawCircle
( const Vec2 &  center,
float  radius,
float  angle,
unsigned int  segments,
bool  drawLineToCenter,
float  scaleX,
float  scaleY 
)

Draws a circle given the center, radius and number of segments.

Parameters
centerThe circle center point.
radiusThe circle rotate of radius.
angleThe circle angle.
segmentsThe number of segments.
drawLineToCenterWhether or not draw the line from the origin to center.
scaleXThe scale value in x.
scaleYThe scale value in y.
void
cocos2d::DrawPrimitives::drawCircle
( const Vec2 &  center,
float  radius,
float  angle,
unsigned int  segments,
bool  drawLineToCenter 
)

Draws a circle given the center, radius and number of segments.

Parameters
centerThe circle center point.
radiusThe circle rotate of radius.
angleThe circle angle.
segmentsThe number of segments.
drawLineToCenterWhether or not draw the line from the origin to center.
void
cocos2d::DrawPrimitives::drawSolidCircle
( const Vec2 &  center,
float  radius,
float  angle,
unsigned int  segments,
float  scaleX,
float  scaleY 
)

Draws a solid circle given the center, radius and number of segments.

Parameters
centerThe circle center point.
radiusThe circle rotate of radius.
angleThe circle angle.
segmentsThe number of segments.
scaleXThe scale value in x.
scaleYThe scale value in y.
void
cocos2d::DrawPrimitives::drawSolidCircle
( const Vec2 &  center,
float  radius,
float  angle,
unsigned int  segments 
)

Draws a solid circle given the center, radius and number of segments.

Parameters
centerThe circle center point.
radiusThe circle rotate of radius.
angleThe circle angle.
segmentsThe number of segments.
void
cocos2d::DrawPrimitives::drawQuadBezier
( const Vec2 &  origin,
const Vec2 &  control,
const Vec2 &  destination,
unsigned int  segments 
)

Draws a quad bezier path.

Parameters
originThe origin of the bezier path.
controlThe control of the bezier path.
destinationThe destination of the bezier path.
segmentsThe number of segments.
Warning
This function could be pretty slow. Use it only for debugging purposes.
Since
v0.8
void
cocos2d::DrawPrimitives::drawCubicBezier
( const Vec2 &  origin,
const Vec2 &  control1,
const Vec2 &  control2,
const Vec2 &  destination,
unsigned int  segments 
)

Draws a cubic bezier path.

Parameters
originThe origin of the bezier path.
control1The first control of the bezier path.
control2The second control of the bezier path.
destinationThe destination of the bezier path.
segmentsThe number of segments.
Warning
This function could be pretty slow. Use it only for debugging purposes.
Since
v0.8
void
cocos2d::DrawPrimitives::drawCatmullRom
( PointArray *  arrayOfControlPoints,
unsigned int  segments 
)

Draws a Catmull Rom path.

Parameters
arrayOfControlPointsA point array of control point.
segmentsThe number of segments.
Warning
This function could be pretty slow. Use it only for debugging purposes.
Since
v2.0
void
cocos2d::DrawPrimitives::drawCardinalSpline
( PointArray *  config,
float  tension,
unsigned int  segments 
)

Draws a Cardinal Spline path.

Parameters
configA array point.
tensionThe tension of the spline.
segmentsThe number of segments.
Warning
This function could be pretty slow. Use it only for debugging purposes.
Since
v2.0
void
cocos2d::DrawPrimitives::setDrawColor4B
( GLubyte  r,
GLubyte  g,
GLubyte  b,
GLubyte  a 
)

Set the drawing color with 4 unsigned bytes.

Parameters
rThe red color with a unsigned bytes.
gThe green color with a unsigned bytes.
bThe blue color with a unsigned bytes.
aAlpha with a unsigned bytes.
Since
v2.0
void
cocos2d::DrawPrimitives::setDrawColor4F
( GLfloat  r,
GLfloat  g,
GLfloat  b,
GLfloat  a 
)

Set the drawing color with 4 floats.

Parameters
rThe red color with an floats.
gThe green color with an floats.
bThe blue color with an floats.
aAlpha with an floats.
Since
v2.0
void
cocos2d::DrawPrimitives::setPointSize
( GLfloat  pointSize)

Set the point size in points.

Default 1.

Parameters
pointSizeThe point size with an float.
Since
v2.0