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



    Inside

    GSDP:GAM100/CProcessing/text()

    text()

    Description

    The text functions draws a string to the screen with input parameters. It uses the settings set by the text functions mentioned in.

    Parameters

    text( const char* text, float x, float y)

    • text - (const char *) The string to draw on the screen in font
    • x - (float) The x position to draw at. Left side of the text.
    • y - (float) The y position to draw at. Bottom of the text.

    Example

    {
        //Set a size for the text
        textSize(30.0f);
    
        // Set it to be red text
        fill(color(255, 0, 0, 255));
    
        // Draw the word  TESTING in the upper left corner
        text("TESTING", 0.0f, 30.0f);
    }
    

    Related