The MASM Forum Archive 2004 to 2012

Project Support Forums => OpenGL Forum => Topic started by: Farabi on August 30, 2005, 08:32:30 AM

Title: Camera function.
Post by: Farabi on August 30, 2005, 08:32:30 AM
I dont know how to made a camera function it is too complex. Is anyone here have it one?
Title: Re: Camera function.
Post by: ninjarider on September 02, 2005, 12:27:56 PM
that i know of u can use the gllookat, or a bunch of gltranslate and glrotate functions to move like if it were a camera.
Title: Re: Camera function.
Post by: Farabi on September 03, 2005, 12:11:54 AM
Hai. Thanks for answering.  I use this for the camera, what is left are the heading movement calculation.


invoke glPushMatrix

invoke glTranslatef, CFLT(0.0), CFLT(0.0), CFLT(-0.0)
invoke glRotatef, RotXCam, CFLT(1.0), CFLT(0.0), CFLT(0.0)
invoke glRotatef, RotYCam, CFLT(0.0), CFLT(1.0), CFLT(0.0)
invoke glRotatef, RotZCam, CFLT(0.0), CFLT(0.0), CFLT(1.0)

invoke glTranslatef, pos3_x, pos3_y, pos3_z


invoke glTranslatef, CFLT(0.0), CFLT(0.0), CFLT(-5.0)
invoke glRotatef, RotX, CFLT(1.0), CFLT(0.0), CFLT(0.0)
invoke glRotatef, RotY, CFLT(0.0), CFLT(1.0), CFLT(0.0)
invoke glRotatef, RotZ, CFLT(0.0), CFLT(0.0), CFLT(1.0)
Title: Re: Camera function.
Post by: hitchhikr on September 04, 2005, 01:03:46 PM
The example Skybox_And_Camera shows how to use quaternions to make a camera and avoid euler angles.

This is a paper concerning quaternions & cameras:

www.cs.wisc.edu/graphics/Courses/cs-838-2002/Papers/quatut.pdf

You can find a lot more on the web.