3.6 Transformations in Opengl: Matrix. Whenever You Specify Geometry (Using
3.6 Transformations in Opengl: Matrix. Whenever You Specify Geometry (Using
To modify the current matrix, first specify which matrix is going to be manipulated: use glMatrixMode(GL MODE
to modify the modelview matrix. The modelview matrix can then be initialized to the identity with
glLoadIdentity(). The matrix can be manipulated by directly filling its values, multiplying it
by an arbitrary matrix, or using the functions OpenGL provides to multiply the matrix by specific
transformation matrices (glRotate, glTranslate, and glScale). Note that these transforma-
tions right-multiply the current matrix; this can be confusing since it means that you specify
transformations in the reverse of the obvious order. Exercise: why does OpenGL right-multiply
the current matrix?
OpenGL provides a stacks to assist with hierarchical transformations. There is one stack for the
modelview matrix and one for the projection matrix. OpenGL provides routines for pushing and
popping matrices on the stack.
The following example draws an upper arm and forearm with shoulder and elbow joints. The
current modelview matrix is pushed onto the stack and popped at the end of the rendering, so,
for example, another arm could be rendered without the transformations from rendering this arm
affecting its modelview matrix. Since each OpenGL transformation is applied by multiplying a
matrix on the right-hand side of the modelview matrix, the transformations occur in reverse order.
Here, the upper arm is translated so that its shoulder position is at the origin, then it is rotated,
and finally it is translated so that the shoulder is in its appropriate world-space position. Similarly,
the forearm is translated to rotate about its elbow position, then it is translated so that the elbow
matches its position in upper arm coordinates.
glPushMatrix();
Copyright
c 2005 David Fleet and Aaron Hertzmann 16
CSC418 / CSCD18 / CSC2504 Transformations
drawElbowJoint();
glRotatef(elbowRotation, 0.0f, 0.0f, 1.0f);
glTranslatef(-forearmElbowX, -forearmElbowY, 0.0f);
drawForearmShape();
glPopMatrix();
Copyright
c 2005 David Fleet and Aaron Hertzmann 17