noSmooth()

Environment

Description

Draws all geometry with jagged (aliased) edges.

Syntax

void noSmooth()

Parameters

None

Returns

void

Related

Under the Hood

From Processing.h:

void noSmooth();

Under the Hood

From Processing.cpp:

void PApplet::noSmooth(){smoothing=false;glDisable(GL_LINE_SMOOTH);glDisable(GL_POLYGON_SMOOTH);glDisable(GL_POINT_SMOOTH);glDisable(GL_MULTISAMPLE);}