ArduinoGraphics - noStroke()

Description

Clears the stroke color of drawing operations.

Syntax

YourScreen.noStroke()

Parameters

None

Returns

Nothing

Example

YourScreen.beginDraw();
YourScreen.clear();
YourScreen.noStroke();
YourScreen.fill(255, 255, 0);
YourScreen.rect(0, 0, YourScreen.width(), YourScreen.height());
YourScreen.endDraw();