Calls ortho() with the proper parameters for Processing's standard orthographic projection.
()
| 4438 | * orthographic projection. |
| 4439 | */ |
| 4440 | @Override |
| 4441 | public void ortho() { |
| 4442 | ortho(-width/2f, width/2f, -height/2f, height/2f, 0, eyeDist * 10); |
| 4443 | } |
| 4444 | |
| 4445 | |
| 4446 | /** |
nothing calls this directly
no test coverage detected