Fixes axis-orientation inconsistency in ortho() and fustrum() (issue #1240)

This commit is contained in:
codeanticode
2012-11-30 01:34:26 +00:00
parent a271f86d6d
commit 0095867c1c
3 changed files with 16 additions and 16 deletions

View File

@@ -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);
}