GSDP:GAM100/CProcessing/noFill()
From Inside
< GSDP:GAM100 | CProcessing
noFill()
Description
The function noFill() draws the next shape without a fill color.
Example
void update()
{
// Do not fill the shape
noFill();
// Draw a rectangle at the cursor position
rect(mouseX, mouseY, 10.0f, 10.0f);
}