Each of (3.16), (3.17), and (3.18) provides a single DOF of rotations. The yaw, pitch, and roll rotations can be combined sequentially to attain any possible 3D rotation:
(3.19) |
Be extra careful when combining rotations in a sequence because the operations are not commutative. For example, a yaw by followed by a pitch by does not produce the same result as the pitch followed by the yaw. You can easily check this by substituting into (3.17) and (3.18), and observing how the result depends on the order of matrix multiplication. The 2D case is commutative because the rotation axis is always the same, allowing the rotation angles to additively combine. Having the wrong matrix ordering is one of the most frustrating problems when writing software for VR.
Steven M LaValle 2020-11-11