( begin auto-generated from PShape_rotateX.xml ) Rotates a shape around the x-axis 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() method. Shapes are always rotated aro
(float angle)
| 3081 | * @see PShape#resetMatrix() |
| 3082 | */ |
| 3083 | public void rotateX(float angle) { |
| 3084 | rotate(angle, 1, 0, 0); |
| 3085 | } |
| 3086 | |
| 3087 | /** |
| 3088 | * ( begin auto-generated from PShape_rotateY.xml ) |