MCPcopy Index your code
hub / github.com/benfry/processing4 / popMatrix

Method popMatrix

core/src/processing/core/PApplet.java:12705–12708  ·  view source on GitHub ↗

Pops the current transformation matrix off the matrix stack. Understanding pushing and popping requires understanding the concept of a matrix stack. The pushMatrix() function saves the current coordinate system to the stack and popMatrix() restores the prior coordinate system. pushM

()

Source from the content-addressed store, hash-verified

12703 * @see PGraphics#pushMatrix()
12704 */
12705 public void popMatrix() {
12706 if (recorder != null) recorder.popMatrix();
12707 g.popMatrix();
12708 }
12709
12710
12711 /**

Callers 6

drawStringMethod · 0.45
drawCharMethod · 0.45
postMethod · 0.45
endDrawMethod · 0.45
imageImplMethod · 0.45
endDrawMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected