Inverting matrix then decomposing gives different quaternion than decomposing then inverting the quat

Posted by Fraser on Game Development See other posts from Game Development or by Fraser
Published on 2012-07-27T12:04:35Z Indexed on 2012/09/10 3:49 UTC
Read the original article Hit count: 328

I'm getting different signs when I convert a matrix to quaternion and invert that, versus when I invert a matrix and then get the quaternion from it:

Quaternion a = Quaternion.Invert(getRotation(m));
Quaternion b = getRotation(Matrix.Invert(m));

I would expect a and b to be identical (or inverses of each other). However, it looks like q1 = (x, y, -z, -w) while q2 = (-x, -y, w, z). In other words, the Z and W components have been switched for some reason.

Note: getRotation() decomposes the transform matrix and returns just the rotation part of it (I've tried normalizing the result; it does nothing). The matrix m is a complete transform matrix and contains a translation (and possibly a scale) as well as a rotation. I'm using D3DXMatrixDecompose to do the actual decomposition.

© Game Development or respective owner

Related posts about math

Related posts about matrix