noFill()
Color / SettingDescription
Disables filling geometry. Shapes will only have a stroke outline.
Syntax
void noFill()
Parameters
None
Returns
voidRelated
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;}