noFill()

Color / Setting

Description

Disables filling geometry. Shapes will only have a stroke outline.

Syntax

void noFill()

Parameters

None

Returns

void

Related

Under the Hood

From Processing.h:

void noFill(); inline void PGraphics::noFill() { if(PApplet::g_papplet) PApplet::g_papplet->noFill(); }

Under the Hood

From Processing.cpp:

void PApplet::noFill() {doFill=false;}