noStroke()
Color / SettingDescription
Disables drawing the stroke (outline).
Syntax
void noStroke()
Parameters
None
Returns
voidRelated
Under the Hood
From Processing.h:
void noFill(); void stroke(float g); void stroke(float r, float g, float b); void noStroke();
void noStroke();
inline void PGraphics::noStroke() { if(PApplet::g_papplet) PApplet::g_papplet->noStroke(); }
Under the Hood
From Processing.cpp:
void PApplet::noStroke() {doStroke=false;}