GSDP:GAM100/CProcessing/vertex()
From Inside
< GSDP:GAM100 | CProcessing
vertex()
Description
Using beginShape() , vertex() , and endShape() , a shape can be defined with any number of vertices. After begin shape is called, use vertex() to specify the specific vertices of the shape. A shape will not be drawn until endShape() is called.
Parameters
vertex(x, y)
- x - (float) the horizontal position of the vertex
- y - (float) the vertical position of the vertex
Example
void update()
{
// Start drawing a shape
beginShape();
// Specify three vertices
vertex(100.0f, 100.0f);
vertex(200.0f, 100.0f);
vertex(200.0f, 200.0f);
// signal the end of the shape and draw the shape
endShape();
}