matrices with glLoadMatrix()

Started by
4 comments, last by swiftcoder 15 years, 5 months ago
I'm using matrices to set my objects and camera, but when I create a 4x4 matrix and apply the translation and the 3x3 rotational matrix, I end up translating the camera before it rotates. Obviously, this isn't helpful when I need a FPS-like camera. How would I set up my matrix/matrices to translate after rotating?
Advertisement
Apply the translation and rotation in the opposite order.

Tristam MacDonald. Ex-BigTech Software Engineer. Future farmer. [https://trist.am]

Which would be great, but if the translation is only applied to three values in the matrix it wouldn't make a difference what order I apply the translation in.
Then you are not properly applying the transformations. Applying translation is not about changing three values in a matrix, you create a translation matrix and multiply it with the other matrix.
The function I came up with is;
        template < class _type >        void TranslateM( basic_matrix < _type, 4, 4 >& tmat, basic_vector < _type, 3 > tvec )        {                basic_matrix < _type, 4, 4 > trans;                sw_math::LoadIdentityM(trans);                trans(12) += tvec(0);                trans(13) += tvec(1);                trans(14) += tvec(2);                tmat = tmat*trans;        }


My matrix class uses a 1D array for the elements, which are considered to be in column order. Both vector and matrix classes (as shown) use overloaded parenthesis for element access, with the matrix overloading this to allow access in (row,column) convention.

Is this the right method to translate a matrix?
Quote:Original post by webwraith
Is this the right method to translate a matrix?
Ja, that looks reasonable, although I can't comment on the order of multiplication.

Tristam MacDonald. Ex-BigTech Software Engineer. Future farmer. [https://trist.am]

This topic is closed to new replies.

Advertisement