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

rotate()

Examples
PShape s;

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

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

void mousePressed() {
  // Rotate the shape each time the mouse is pressed
  s.rotate(0.1);  
}
Description Rotates the shape the amount specified by the angle parameter. Angles should be specified in radians (values from 0 to TWO_PI) or converted from degrees to radians with the radians() method.

Shapes are always rotated around the upper-left corner of their bounding box. Positive numbers rotate objects in a clockwise direction. Transformations apply to everything that happens after and subsequent calls to the method accumulates the effect. For example, calling rotate(HALF_PI) and then rotate(HALF_PI) is the same as rotate(PI). This transformation is applied directly to the shape, it's not refreshed each time draw() is run.
Syntax
sh.rotate(angle)
Parameters
sh PShape: any variable of type PShape
angle float: angle of rotation specified in radians
Returnsvoid
RelatedrotateX()
rotateY()
rotateZ()
scale()
translate()
resetMatrix()
Updated on January 21, 2019 10:05:13am EST

Creative Commons License