Rotates a shape around the x-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)
| 5466 | * @see PGraphics#translate(float, float, float) |
| 5467 | */ |
| 5468 | public void rotateX(float angle) { |
| 5469 | showMethodWarning("rotateX"); |
| 5470 | } |
| 5471 | |
| 5472 | |
| 5473 | /** |
nothing calls this directly
no test coverage detected