can anyone tell me how to make my model rotate at its own center go gravity in stead of the default (0,0,0) axis?
and my rotation seems to be only going left and right not 360 degree..
|
|
can anyone tell me how to make my model rotate at its own center go gravity in stead of the default (0,0,0) axis? and my rotation seems to be only going left and right not 360 degree..
|
|||
|
|
|
|
If you want to rotate an object around its center, you first have to translate it to the origin, then rotate and translate it back. Since transformation matrices affect your vectors from right to left, you have to code these steps in opposite order. Here is some pseudocode since I don't know OpenGL routines by heart:
These matrices get applied:
So the order is: Rotation, Translation. EDIT: An explanation for the equation above. The transformations rotation, scale and translation affect the model-view-matrix. Every 3D point (vector) of your model is multiplied by this matrix to get its final point in 3D space, then it gets multiplied by the projection matrix to receive a 2D point (on your 2D screen). Ignoring the projection stuff, your point transformed by the model-view-matrix is:
Meaning the original point In the code above, we have constructed
Putting everything together, you see that your point
Calling Rotate() prior to Translate() would result in:
which would be bad: Translated to some point in 3D, then rotated around the origin, leading to some strange distortion in your model. |
||||||||
|