PDA

View Full Version : Extracting viewing direction..


Mihail121
09-05-2005, 08:20 AM
Hi! Does anybody know how to extract the viewing direction from an arbitaty camera matrix?

Thanks you!

Reedbeta
09-05-2005, 10:10 AM
If you are using OpenGL, the viewing direction is the negative of the 3rd row of the viewing matrix. (This is assuming your viewing transform uses only translations and rotations, not anything weird...)

Mihail121
09-05-2005, 11:46 AM
Well the problem is i need to be able to extract viewing directions from ALL kind of viewing matrices, not only from the OGL one or from UVN one, etc. I need a way to figure a viewing vector, only looking at the camera matrix.

Axel
09-05-2005, 03:31 PM
This should work for any view matrix afaik.

Reedbeta
09-05-2005, 11:12 PM
What I meant by saying "assuming you are using OpenGL" is that it depends on the eye space convention. OpenGL uses a right-handed eye space, so the -Z axis is in front of the eye; in D3D, the eye space is left-handed, so the +Z axis is in front (and in this case you would just take the third row rather than its negative).

anubis
09-05-2005, 11:49 PM
The only other thing that would matter is row vs. collum major...

Mihail121
09-06-2005, 01:02 AM
Thanks to all of you! It actually works!!! *YAY*