popMatrix()
TransformDescription
Pops the current transformation matrix off the matrix stack.
Syntax
void popMatrix()
Parameters
None
Returns
voidRelated
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(); }