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

Method pushMatrix

core/src/processing/core/PApplet.java:12686–12689  ·  view source on GitHub ↗

Pushes the current transformation matrix onto the matrix stack. Understanding pushMatrix() and popMatrix() requires understanding the concept of a matrix stack. The pushMatrix() function saves the current coordinate system to the stack and popMatrix() restores the prior c

()

Source from the content-addressed store, hash-verified

12684 * @see PGraphics#rotateZ(float)
12685 */
12686 public void pushMatrix() {
12687 if (recorder != null) recorder.pushMatrix();
12688 g.pushMatrix();
12689 }
12690
12691
12692 /**

Callers 6

drawStringMethod · 0.45
drawCharMethod · 0.45
preMethod · 0.45
beginDrawMethod · 0.45
imageImplMethod · 0.45
beginDrawMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected