popStyle()
StructureDescription
Restores the previous style settings saved with pushStyle().
Syntax
void popStyle()
Parameters
None
Returns
voidRelated
Under the Hood
From Processing.h:
void popStyle();
Under the Hood
From Processing.cpp:
void PApplet::popStyle() {
if (!styleStack.empty()) {
restoreStyle(styleStack.back());
styleStack.pop_back();
}
}
void PApplet::pop() { glPopMatrix(); popStyle();