Introduction

Previously the work with matrices has all be linear transformations, transformations that used matrix multiplication. Linear transformations can be extended to include simple rotations. This lesson uses the 3D and 4D homogeneous coordinate systems for consistency.

Left-hand Rule (LHR) vs. Right-hand Rule (RHR):

There are many ways in which you can create a 3D coordinate system but the two most common are the LHR and the RHR as shown in the figure below.

3d-rules

To visualize this, create a 3D system using your thumb (x-axis), index finger (y-axis), and middle finger (z-axis). Try rotating your left hand to match the LHR, then with your right-hand match the RHR.

Rotations in 2D & 3D

Key Concepts

The key concepts of this part of the lesson are:

  • Rotation in pure 2D space
  • Rotation about a cardinal axis (i.e., simple 3D rotations)
  • Euler angles to matrix
  • Matrix to Euler angles

Lesson

To see how rotations work in 3D the 2D system must be covered as it forms the basis of the remainder of this lesson. In 2D, as was stated in the previous lesson, the 2D coordinate system uses a single reference axis, i.e., the z-axis if the coordinate system is extrapolated to the 3D world, or the w-axis to maintain consistency with the final 3D rotations. For now, it is best to “pretend” that the 2D system contains a z-axis. The inclusion of the z-axis is necessary to go from 2D to 3D and then to the 4D homogeneous system. In this 2D world the world is in 3D and the z-axis is the rotation axis.

Earlier a matrix was defined as an array of vectors. Using this in the figure below, with two vectors, P and Q, the following matrix can be constructed:

rotations-2d-explained

Rotating the two vectors about an angle θ their positions change (recall basic trigonometry) to P’ and Q’. This new position can be written as the matrix below:

As this was done without including the rotation axis (which was explained as either using the z-axis or the w-axis) the resulting rotation matrix in 3D format is:

Whether the z-axis or the w-axis is used the resulting rotation matrix does not change the value of z or w.

Example Given the vector, in homogeneous space, and a rotation angle of 20o calculate the new coordiantes of the vector:

rotation-2d-math

Now that a simple 2D rotation matrix has been defined the next step is to expand this to a 3D system. In a 3D system, there are 3 rotation axes, x, y, and z. For now, the assumption is that the 3D form from above is a rotation about the z-axis. The next question would be what would the matrix look like if the rotation is about the x, or the y axis? First it is important to rewrite the rotation matrix:

For rotation about the x axis the matrix is:

Rotation about the y-axis is:

As with the other linear transformations, each of these rotation matrices need to be put in homogeneous, or 4D, form:

  

In each of these new matrices the reference, or w-axis, does not change with any of the rotations, which is the desired result.

Using simple linear transformations only one rotation is done at a time. For example, take a point (2, 1, 4) and rotate it individually about the x-, y- and z-axis with a rotation angle of 90o. The first step would be to construct the individual matrices as shown below but first and

  

Now perform the multiplication:

As a side note the rotation matrices created above have some common names such as pitch (attitude), roll (bank), or yaw (heading). These terms only make sense relative to the direction of travel in a 3D coordinate space but typically in a LHR system roll is rotation about the z-axis, pitch is rotation about the x-axis. (In a RHR system, roll is about the x-axis and pitch is about the z-axis.)

Considering the multiplication rules for matrices if a rotation were to take place about more than one axis of rotation in each game loop, does the order of multiplication matter? Yes, the order matters (the instructor could take any two of the matrices and multiply them in different order and show that the resulting matrix is not the same; the problem is compounded when using all three rotation matrices). There is a standard that will be used in this class which is Roll-Pitch-Yaw (RPY). The calculation is first Rx x Ry, then this result is multiplied by Rz,

For example, given the vector, in homogeneous space, and the rotation angles of Roll=5o, Pitch=10o, and Yaw=10o calculate the individual rotation matrices, the product of the vectors with each matrix, the RPY matrix and the product of the vector and this matrix:

roll-pitch-yaw-math

The reverse of this operation, Matrix to Euler Angles, is also possible. The technique used here will restrict yaw and roll to ±180o and pitch to ±90o. An additional restraint is that there are no additional linear transforms in the matrix, such as shifting and scaling.

Examining the Euler-to-Matrix result it is easiest to start with the pitch angle (from the matrix cell M32).

therefore

The result of the inverse sine operation will yield results in the range of to which is -90o to +90o, which is the desired range. Once P has been calculated the value can also be computed, if , using cell M31.

Next the calculation for the Roll angle needs to be done using cells M12 and M22:

In programming the correct function to use is the ATAN2 function to give the correct angle.

For example, the matrix below, calculate the Euler angles:

matrix-to-euler

So, what happens if cos(P) = 0? Obviously, division by zero is not possible. Yet when then . In this situation, the result is Gimbal Lock; the object is either pointing straight up or straight down. In this Gimbal Lock the Yaw (heading) and Roll (bank) now rotate about the same axis (the y-axis). To solve for this now arbitrarily assign all rotations about the y-axis to Yaw (heading) and set Roll (bank) to zero. Now the following values are known:

,, , and

Substitute these values into the matrix to get:

Exercises & Assignments

Have students complete the 2D & 3D Rotations worksheet. Once complete proceed to Moodle to complete Knowledge Check 08 - 2D & 3D Rotations (strongly recommended to be completed prior to attempting Lab 2).

Outcome Home

PHYS1521 Home