Name

noSmooth

Examples
background(0)
noStroke()
smooth()
ellipse(30, 48, 36, 36)
noSmooth()
ellipse(70, 48, 36, 36)
Description Draws all geometry with jagged (aliased) edges. Note that smooth() is active by default, so it is necessary to call noSmooth() to disable smoothing of geometry, images, and fonts.
Syntax
noSmooth()
Related smooth
Creative Commons License