Drawing OpenGL ES primitives. More...
Namespaces | |
cocos2d | |
Constant Groups | |
cocos2d | |
Functions | |
void CC_DLL | () |
Initializes the drawing primitives. More... | |
void CC_DLL | () |
Frees allocated resources by the drawing primitives. More... | |
void CC_DLL | (const CCPoint &point) |
draws a point given x and y coordinate measured in points More... | |
void CC_DLL | (const CCPoint *points, unsigned int numberOfPoints) |
draws an array of points. More... | |
void CC_DLL | (const CCPoint &origin, const CCPoint &destination) |
draws a line given the origin and destination point measured in points More... | |
void CC_DLL | (CCPoint origin, CCPoint destination) |
draws a rectangle given the origin and destination point measured in points. More... | |
void CC_DLL | (CCPoint origin, CCPoint destination, ccColor4F color) |
draws a solid rectangle given the origin and destination point measured in points. More... | |
void CC_DLL | (const CCPoint *vertices, unsigned int numOfVertices, bool closePolygon) |
draws a polygon given a pointer to CCPoint coordinates and the number of vertices measured in points. More... | |
void CC_DLL | (const CCPoint *poli, unsigned int numberOfPoints, ccColor4F color) |
draws a solid polygon given a pointer to CGPoint coordinates, the number of vertices measured in points, and a color. More... | |
void CC_DLL | (const CCPoint ¢er, 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 CC_DLL | (const CCPoint ¢er, float radius, float angle, unsigned int segments, bool drawLineToCenter) |
var | ( var center, var radius, var angle, var segments, var drawLineToCenter) |
local | ( local center, local radius, local angle, local segments, local drawLineToCenter) |
void CC_DLL | (const CCPoint &origin, const CCPoint &control, const CCPoint &destination, unsigned int segments) |
draws a quad bezier path More... | |
var | ( var origin, var control, var destination, var segments) |
draws a quad bezier path More... | |
local | ( local origin, local control, local destination, local segments) |
draws a quad bezier path More... | |
void CC_DLL | (const CCPoint &origin, const CCPoint &control1, const CCPoint &control2, const CCPoint &destination, unsigned int segments) |
draws a cubic bezier path More... | |
void CC_DLL | (CCPointArray *arrayOfControlPoints, unsigned int segments) |
draws a Catmull Rom path. More... | |
void CC_DLL | (CCPointArray *config, float tension, unsigned int segments) |
draws a Cardinal Spline path. More... | |
void CC_DLL | (GLubyte r, GLubyte g, GLubyte b, GLubyte a) |
set the drawing color with 4 unsigned bytes More... | |
void CC_DLL | (GLfloat r, GLfloat g, GLfloat b, GLfloat a) |
set the drawing color with 4 floats More... | |
void CC_DLL | (GLfloat pointSize) |
set the point size in points. More... | |
Drawing OpenGL ES primitives.
You can change the color, point size, width by calling: