noSmooth()
EnvironmentDescription
Draws all geometry with jagged (aliased) edges.
Syntax
void noSmooth()
Parameters
None
Returns
voidRelated
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);}