Fixed argument order in A3D version of ortho()

This commit is contained in:
codeanticode
2011-02-28 05:11:02 +00:00
parent 3d18f7aae6
commit 6ca31438b7
@@ -4285,7 +4285,7 @@ public class PGraphicsAndroid3D extends PGraphics {
* from the current camera configuration.
*/
public void ortho(float left, float right, float bottom, float top) {
ortho(0, width, 0, height, cameraNear, cameraFar);
ortho(left, right, bottom, top, cameraNear, cameraFar);
}
/**