Matrix Multiplication

Can anyone tell me what is the Matrix Multiplication of the below series call of function?

LoadIdentity();
glTranslatef(Tx, Ty, Tz);
glRotatef(degree, 0, 0 , 1);

Thanks…

You should try a glGetFloatV( … )
and get the matrix so you can look at it yourself.

1 0 0 -Tx
0 1 0 -Ty
0 0 1 -Tz
0 0 0 1

and then the rotation is cosines and sines of x and y:

cos(d) -sin(d) 0 0
sin(d) cos(d) 0 0
0 0 1 0
0 0 0 1

Multiply the two together for the result.