1 / 23

Arbitrary Rotations in 3D

Arbitrary Rotations in 3D. Lecture 18 Wed, Oct 8, 2003. Rotations about an Arbitrary Axis. Consider a rotation through an angle  about a line through the origin. We must assign a positive direction to the line. We do this by using a vector rather than a line.

malina
Download Presentation

Arbitrary Rotations in 3D

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Arbitrary Rotations in 3D Lecture 18 Wed, Oct 8, 2003

  2. Rotations about an Arbitrary Axis • Consider a rotation through an angle  about a line through the origin. • We must assign a positive direction to the line. • We do this by using a vector rather than a line.

  3. Rotations about an Arbitrary Axis • The function call glRotatef(angle, vx, vy, vz) will create a single matrix that represents a rotation about the vector v = (vx, vy, vz). • There are some clever ways of obtaining this matrix. • We will learn an elementary (non-clever) method.

  4. Rotations about an Arbitrary Axis • To find the matrix of an rotation through an angle  about a vector v emanating from the origin • Rotate about the y-axis so that v is in the xy-plane. Let this angle be  and call the new vector v’. • Rotate about the z-axis so that v’ is aligned with the positive x-axis. Let this angle be –.

  5. Rotations about an Arbitrary Axis • Rotate about the x-axis through angle . • Rotate about the z-axis through angle . • Rotate about the y-axis through angle –.

  6. v Rotations about an Arbitrary Axis • Find the matrix of a rotation of angle  about unit vector v = (vx, vy, vz).

  7. v  Rotations about an Arbitrary Axis • Rotate v about the y-axis through angle  to get vector v’. • Call this matrix Ry().

  8. v’  v’’ Rotations about an Arbitrary Axis • Rotate v’ about the z-axis through angle – to get vector v’’. • Call this matrix Rz(–).

  9. v’’ Rotations about an Arbitrary Axis • Rotate about the x-axis through angle . • Call this matrix Rx().

  10. Rotations about an Arbitrary Axis • Then apply Rz(-)–1 followed by Ry()–1. • The matrix of the rotation is the product Ry()–1Rz(-)–1Rx()Rz(-)Ry() • This is the same as Ry(-)Rz()Rx()Rz(-)Ry()

  11. Example: Rotation • Find the matrix of the rotation about v = (1/3, 2/3, 2/3) through 90. • v projects to (1/3, 0, 2/3) in the xz-plane. •  = tan–1(2). • cos() = 1/5, sin() = 2/5.

  12. Example: Rotation • The matrix of this rotation is Ry() =

  13. Example: Rotation • v rotates into the vector v’ = (5/3, 2/3, 0). •  = tan–1(2/5). • cos(-) = 5/3, sin(-) = -2/3.

  14. Example: Rotation • The matrix of this rotation is Rz(-) =

  15. Example: Rotation • Now apply the original rotation of 90 to the x-axis. • The matrix is Rz() =

  16. Example: Rotation • Reverse the rotation through angle . Rz() =

  17. Example: Rotation • Reverse the rotation through angle . Ry(-) =

  18. Example: Rotation • The product of these five matrices is the matrix of the original rotation. R() =

  19. Example: Rotation • How can we verify that this is correct? • If P is a point on the axis of rotation, then the transformed P should be the same as P. • If v is orthogonal to the axis, then the transformed v should be orthogonal to v. • If we apply the transformation 4 times, we should get the identity.

  20. Example: Rotation • A point on the axis is of the form (t, 2t, 2t, 1). • The matrix maps this point to (t, 2t, 2t, 1).

  21. Example: Rotation • Compute R()2 = R()4 =

  22. Special Properties of Rotation Matrices • Every rotation matrix has the following properties. • Each row or column dotted with itself is 1. • Each row (column) dotted with a different row (column) is 0. • A matrix with this property is called orthonormal. • Its inverse equals its transpose.

  23. Special Properties of Rotation Matrices • Verify that R() is orthonormal. • Consider each row of the matrix to be a point. • Where does the matrix map each row? • These are the points that map to the points (1, 0, 0), (0, 1, 0), and (0, 0, 1). • What about the columns? What do they represent?

More Related