( begin auto-generated from PShape_rotateY.xml ) Rotates a shape around the y-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)
| 3115 | * @see PShape#resetMatrix() |
| 3116 | */ |
| 3117 | public void rotateY(float angle) { |
| 3118 | rotate(angle, 0, 1, 0); |
| 3119 | } |
| 3120 | |
| 3121 | |
| 3122 | /** |