vote up 0 vote down star

I followed the question here http://stackoverflow.com/questions/764313/quaternion-math-for-rotation to get an angle of rotation and the axis around which I need to rotate, My question is how do I pass the angle and axis as an argument to glrotate()?

flag

2 Answers

vote up 2 vote down check

If the axis is defined by the variables x, y, z, and the rotation angle is in the variable angle, then it's as simple as glRotatef(angle, x, y, z)

link|flag
vote up 2 vote down

The double version is

glRotated(angle,x,y,z)

The float version is

glRotatef(angle, x, y, z)

The angle must be in degrees, so convert it to degrees first if it is in radians.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.