mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 10:30:44 +01:00
Fixes axis-orientation inconsistency in ortho() and fustrum() (issue #1240)
This commit is contained in:
@@ -120,7 +120,7 @@ public class PGraphics2D extends PGraphicsOpenGL {
|
||||
|
||||
@Override
|
||||
protected void defaultPerspective() {
|
||||
super.ortho(-width/2, +width/2, -height/2, +height/2, -1, +1);
|
||||
super.ortho(-width/2, +width/2, +height/2, -height/2, -1, +1);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user