GSDP:GAM100/CProcessing/text()
From Inside
< GSDP:GAM100 | CProcessing
Revision as of 14:45, 5 October 2019 by >Zachary.logsdon
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);
}