I'm using OpenGL with gluPerspective, what would I need to do to make it use an axis-system which the origin is top left instead of bottom left?
|
feedback
|
|
You can do this by flipping the
That ought to do it. You could also use a You can also use the same technique to flip any of the other axes; just put minus signs in the appropriate locations. | |||||||
feedback
|
|
I would say direct operating on the projection matrix is a clean way for this operation. But if by any chance you need an alternative: You can just use This is also just an operation on the GL_MODELVIEW or GL_PROJECTION matrix (whatever is currently active). | |||
|
feedback
|