I'm interested in implementing a clean solution providing an alternative to 4x4 matrices for 3D transformation. Quaternions provide the equivalent of rotation, but no translation. Therefore, in addition to a Quaternion, you need an additional vector of translations $(t_x,t_y,t_z)$. I have always seen it stated that you need 12 values for the matrix representation, and only 7 for the quaternion-based representation.
What I don't understand is how to manipulate the translation values.
For rotation of a quaternion, no problem.
For a vector $v$, an axis vector $x$, and an angle $a$: $q = \cos\left(\frac{a}{2}\right) + x \cdot \sin\left(\frac{a}{2}\right)$ To rotate the vector: v' = qvq^{-1} For multiple rotations, you can apply the transformations to the quaternion, and only when you have the final rotation do you have to apply it to the data. This is why matrix transformation is so nice in 3d graphics systems.
Ok, so now if translation enters into it, what do I do?
A given vector transformation is: $T = (t_x,t_y,t_z)$ v' = qvq^{-1} + T If I want to apply a rotation and translation operation to this, I would have to modify $T$ and $q$. What should the result be?