Fix RotateZ bug

This commit is contained in:
Stan le Punk
2019-12-01 21:58:05 +01:00
parent 6c623ca5e9
commit 1ba2a25180

View File

@@ -1269,7 +1269,7 @@ public class PShapeOpenGL extends PShape {
@Override
public void rotateZ(float angle) {
transform(ROTATE, angle);
rotate(angle, 0, 0, 1);
}