Rotates a shape around the z-axis the amount specified by the angle parameter. Angles should be specified in radians (values from 0 to PI 2) or converted to radians with the radians() function. Objects are always rotated around their relative position to the origin and positive numbers
(float angle)
| 5530 | * @see PGraphics#translate(float, float, float) |
| 5531 | */ |
| 5532 | public void rotateZ(float angle) { |
| 5533 | showMethodWarning("rotateZ"); |
| 5534 | } |
| 5535 | |
| 5536 | |
| 5537 | /** |
nothing calls this directly
no test coverage detected