ArduinoGraphics - noFill()

Description

Clears the fill color of drawing operations.

Syntax

YourScreen.noFill()

Parameters

None

Returns

Nothing

Example

YourScreen.beginDraw();
YourScreen.clear();
YourScreen.stroke(255, 0, 255);
YourScreen.noFill();
YourScreen.rect(0, 0, YourScreen.width(), YourScreen.height());
YourScreen.endDraw();