This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.

Name

popStyle()

Examples
example pic
ellipse(0, 50, 33, 33);  // Left circle

pushStyle();  // Start a new style
strokeWeight(10);
fill(204, 153, 0);
ellipse(50, 50, 33, 33);  // Middle circle
popStyle();  // Restore original style

ellipse(100, 50, 33, 33);  // Right circle
example pic
ellipse(0, 50, 33, 33);  // Left circle

pushStyle();  // Start a new style
strokeWeight(10);
fill(204, 153, 0);
ellipse(33, 50, 33, 33);  // Left-middle circle

pushStyle();  // Start another new style
stroke(0, 102, 153);
ellipse(66, 50, 33, 33);  // Right-middle circle
popStyle();  // Restore the previous style

popStyle();  // Restore original style

ellipse(100, 50, 33, 33);  // Right circle
Description The pushStyle() function saves the current style settings and popStyle() restores the prior settings; these functions are always used together. They allow you to change the style settings and later return to what you had. When a new style is started with pushStyle(), it builds on the current style information. The pushStyle() and popStyle() functions can be embedded to provide more control (see the second example above for a demonstration.)
Syntax
popStyle()
Returnsvoid
RelatedpushStyle()
Updated on January 21, 2019 10:05:12am EST

Creative Commons License