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.

Name

rotate()

Examples
example pic
translate(width/2, height/2);
rotate(PI/3.0);
rect(-26, -26, 52, 52);
Description Rotates the amount specified by the angle parameter. Angles must be specified in radians (values from 0 to TWO_PI), or they can be converted from degrees to radians with the radians() function.

The coordinates are always rotated around their relative position to the origin. Positive numbers rotate objects in a clockwise direction and negative numbers rotate in the couterclockwise direction. Transformations apply to everything that happens afterward, and subsequent calls to the function compound the effect. For example, calling rotate(PI/2.0) once and then calling rotate(PI/2.0) a second time is the same as a single rotate(PI). All tranformations are reset when draw() begins again.

Technically, rotate() multiplies the current transformation matrix by a rotation matrix. This function can be further controlled by pushMatrix() and popMatrix().
Syntax
rotate(angle)
Parameters
angle float: angle of rotation specified in radians
Returnsvoid
RelatedpopMatrix()
pushMatrix()
rotateX()
rotateY()
rotateZ()
scale()
radians()
Updated on January 1, 2021 03:38:08am EST