noStroke()

Color / Setting

Description

Disables drawing the stroke (outline).

Syntax

void noStroke()

Parameters

None

Returns

void

Related

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;}