This reference is for Processing 3.0+. If you have a previous version, use the reference included with your software in the Help menu. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Core Javadoc and Libraries Javadoc.

Class

PShape

Name

resetMatrix()

Examples
PShape s;

void setup() {
  size(100, 100);
  s = loadShape("ohio.svg");
  s.rotate(PI/6);
}

void draw() {
  background(204);
  shape(s);
}

void mousePressed() {
  // Removes all transformations applied to shape
  // Loads the identity matrix
  s.resetMatrix();
}
Description Replaces the current matrix of a shape with the identity matrix. The equivalent function in OpenGL is glLoadIdentity().
Syntax
sh.resetMatrix()
Parameters
sh PShape: any variable of type PShape
Returnsvoid
Relatedrotate()
scale()
translate()
Updated on January 21, 2019 10:05:13am EST

Creative Commons License