Rotates a shape around the y-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)
| 5498 | * @see PGraphics#translate(float, float, float) |
| 5499 | */ |
| 5500 | public void rotateY(float angle) { |
| 5501 | showMethodWarning("rotateY"); |
| 5502 | } |
| 5503 | |
| 5504 | |
| 5505 | /** |
nothing calls this directly
no test coverage detected