popMatrix()

Transform

Description

Pops the current transformation matrix off the matrix stack.

Syntax

void popMatrix()

Parameters

None

Returns

void

Related

Under the Hood

From Processing.h:

void pushMatrix(); void popMatrix(); void popMatrix(); inline void PGraphics::popMatrix() { if(PApplet::g_papplet) PApplet::g_papplet->popMatrix(); }

Under the Hood

From Processing.cpp:

void PApplet::popMatrix() { glPopMatrix(); }