( 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)
| 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 | /** |