popStyle()

Structure

Description

Restores the previous style settings saved with pushStyle().

Syntax

void popStyle()

Parameters

None

Returns

void

Related

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();