In the description of gluOrtho2d they say it's like glOrtho with near=-1 and far=1.
- Why is near behind the viewer.
- Why does the matrix described here: http://www.opengl.org/sdk/docs/man2/xhtml/glOrtho.xml have the Z-axis inverted?
|
In the description of gluOrtho2d they say it's like glOrtho with near=-1 and far=1.
|
||||
|
1) As the name would imply, gluOrtho2d is meant for drawing things where the depth coordinate doesn't really matter. It's set up so you can send 2-component verts to the gpu and the depth just defaults to 0. In this case it makes sense to have a projection where 0 is right in between the near/far planes so you don't have to worry about it. It's worth mentioning that in an orthographic projection the idea of being "behind" the viewer loses some of its meaning anyway because the distance from the viewer to the object has no affect on the projection other than choosing whether or not to draw it at all. 2) Probably because in OpenGL space, the NEGATIVE Z-axis is into the screen, so if glOrtho didn't negate you'd always have to pass in negative values for near and far. Which would be a little weird I guess. |
|||||||||||||||||
|
glOrtho, [2][2] = -1, and [2][3] = (tz) = 0, you have a very simple transform. It effectively does nothing to the Z coordinate, except change the sign for depth requirements. – Brett Hale Feb 13 at 18:05glOrtho2d? – genpfault Feb 13 at 18:46gluOrtho2d. – Damon Feb 13 at 18:52