Math Is Fun Forum

  Discussion about math, puzzles, games and fun.   Useful symbols: ÷ × ½ √ ∞ ≠ ≤ ≥ ≈ ⇒ ± ∈ Δ θ ∴ ∑ ∫ • π ƒ -¹ ² ³ °

You are not logged in.

#1 2008-05-27 07:37:40

mikau
Member
Registered: 2005-08-22
Posts: 1,504

OpenGL question (Luca?)

I once wrote a program to do wire frame projections for me, and I guess I'm kind of used to my own way of doing things. But I got a book on OpenGL that I've been reading over summer break, and the way they do certain things perplexes me.

One thing I read today is that when doing model rotations, you effectively rotate a models coordinate system. This means that when you use GL translate to shift the model over, say by a vector of (1, 0, 0), it gets shifted by that vector, relative to its new coordinate system.

That sounds like a hassle to me. Say you had a 3d object thats been rotated several ways, and you want to transfer the object onto say.... a table, by shifting its location. You'd have to calculate the coordinates of the table with respect to the objects weirdly rotated coordinate system, and that sounds unnecessarily complicated for such a simple thing.

Is there a simpler way to move an object in this fashion?

Last edited by mikau (2008-05-27 07:39:35)


A logarithm is just a misspelled algorithm.

Offline

#2 2008-05-27 09:23:58

luca-deltodesco
Member
Registered: 2006-05-05
Posts: 1,470

Re: OpenGL question (Luca?)

I havn't really used OpenGL for all that much beyond basic things really, but i know that you can read in the transformation matrix into a float array, and use the methods glMultMatrixf etc, so that you can append a transformation at the beginning rather than the end. I cannot for the sake of me remember if your problem is applicable or not, i can't remember how opengl works its transformation orders.

anyways.

float cmat [16];
glGetFloatv(GL_MODELVIEW_MATRIX, cmat);
glLoadIdentity();
glTranslatef(...);
glMultMatrixf(cmat);

However, constantly retrieving the modelview matrix might have a performance impact. But surely you would know the translation required already and do it first before doing any rotations?

I personally don't like openGL for its ordering, i.e. if you have

glTranslatef(...);
glRotatef(...);
glScalef(...);

that means its going to scale it, then rotate it, then translate it. which is kind of counter intuitive i think tongue

Last edited by luca-deltodesco (2008-05-27 09:28:35)


The Beginning Of All Things To End.
The End Of All Things To Come.

Offline

#3 2008-05-27 09:42:38

mikau
Member
Registered: 2005-08-22
Posts: 1,504

Re: OpenGL question (Luca?)

But surely you would know the translation required already and do it first before doing any rotations?

pooossibly! But one thing I like making is a robot model that can be positioned based on a set of angle parameters. When updating its position, I would basically assemble each piece in a series of rotations and translations. For instance, you would rotate the forearm by say, leftElbowAngle, and then move it onto the bottom of the upper arm, and then the two of them would be rotated by leftArmShoulderAngle. The entire upper body could be rotated about its waste, and finally the entire model could be rotated and shifted to its appropriate location.

Now according to that, if different parts of the body are rotated at all these different angles, then calling glTranslate to shift its location would send them off in all different directions.

now i MAY be able to reorder it so that every piece is rotated before its translated, I just suspect that in certain scenarios, you might need to shift after rotating, and it would be a nightmare.


A logarithm is just a misspelled algorithm.

Offline

#4 2008-05-27 09:42:39

Ricky
Moderator
Registered: 2005-12-04
Posts: 3,791

Re: OpenGL question (Luca?)

You push and pop your "movement" matrices.  Unfortunately I just packed up my OpenGL book last night since I'm moving and thought to myself, "I won't need this in the foreseeable future."  Look up glPushMatrix and glPopMatrix.  The basic thing you would do:

glPushMatrix();
   rotate object at origin;
   translate object to the position you want;
glPopMatrix();
glPushMatrix();
   now work on your next object;
   ...
glPopMatrix();

And so on.  The functions involved give a view of what is actually going on in the computer.  Moving points in space is always done by multiplying a coordinate by a matrix.  All movement functions are done by matrix multiplication.  Translating then rotation is done by multiplying a translating matrix by a rotating matrix.  pushing the matrix in effect saves the "movement" matrix where you are currently at, then you make changes to it by multiplying by other matrices.  Popping takes you back to that saved state.

PS: What is the proper word for "movement" matrix?  I know there is one...


"In the real world, this would be a problem.  But in mathematics, we can just define a place where this problem doesn't exist.  So we'll go ahead and do that now..."

Offline

#5 2008-05-27 09:44:19

mikau
Member
Registered: 2005-08-22
Posts: 1,504

Re: OpenGL question (Luca?)

I think 'translation' or 'transformation' matrix is the term for it?

Last edited by mikau (2008-05-27 09:44:31)


A logarithm is just a misspelled algorithm.

Offline

#6 2008-05-27 09:58:31

Ricky
Moderator
Registered: 2005-12-04
Posts: 3,791

Re: OpenGL question (Luca?)

transformation, that's it!  Translation is a specific type of transformation.


"In the real world, this would be a problem.  But in mathematics, we can just define a place where this problem doesn't exist.  So we'll go ahead and do that now..."

Offline

#7 2008-06-24 13:32:40

mikau
Member
Registered: 2005-08-22
Posts: 1,504

Re: OpenGL question (Luca?)

am I going mad, or does my openGL book not understand matrix multiplication?

Last edited by mikau (2008-06-24 13:39:44)


A logarithm is just a misspelled algorithm.

Offline

#8 2008-06-24 20:06:04

luca-deltodesco
Member
Registered: 2006-05-05
Posts: 1,470

Re: OpenGL question (Luca?)

opengl doesn't perform its transformations in that order perhaps? tongue, if you do the 4vector multiplied by the matrix, you'll get that result


The Beginning Of All Things To End.
The End Of All Things To Come.

Offline

#9 2008-06-24 21:27:40

mikau
Member
Registered: 2005-08-22
Posts: 1,504

Re: OpenGL question (Luca?)

hmmm... you're right! Mind you, thats exactly how the matrix equation was displayed in the book. shame

but regardless, that doesn't seem right. OpenGL performs the transformations in the reverse order of when you specify them.

Say you start with the model View matrix as the Identity. Then you specify a rotation matrix R, a translation matrix T, ands a scaler matrix S, in that order. Each transformation right multiplies the new matrix by the old one, so we get: (R*T*S) as our modelview matrix.

If we had to left multiply a 4vector V (or rather, a 1x4 matrix) by this matrix, V(R*T*S), that would result in the transformations occurring in the order in which they were specified, and not in reverse, which is not how its supposed to work. Unless perhaps, the reverse order process is not used for the Projection Matrix.

Last edited by mikau (2008-06-24 21:29:53)


A logarithm is just a misspelled algorithm.

Offline

Board footer

Powered by FluxBB