Please Login First
×
Create a new article
Write your page title here:
We currently have 322 articles on Inside. Type your article name above or click on one of the titles below and start writing!



    Inside

    GSDP:GAM100/CProcessing/vertex()

    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();
    }
    

    Related