MCPcopy Index your code
hub / github.com/processing/processing / rotate

Method rotate

core/src/processing/core/PApplet.java:13528–13531  ·  view source on GitHub ↗

( begin auto-generated from rotate.xml ) Rotates a shape the amount specified by the angle parameter. Angles should be specified in radians (values from 0 to TWO_PI) or converted to radians with the radians() function. Objects are always rotated around their relative posit

(float angle)

Source from the content-addressed store, hash-verified

13526 * @see PApplet#radians(float)
13527 */
13528 public void rotate(float angle) {
13529 if (recorder != null) recorder.rotate(angle);
13530 g.rotate(angle);
13531 }
13532
13533
13534 /**

Callers

nothing calls this directly

Calls 1

rotateMethod · 0.65

Tested by

no test coverage detected