Vector rotation

From Citizendium
Revision as of 11:55, 5 April 2009 by imported>David E. Volk (→‎Method of Moller and Hughes)
Jump to navigation Jump to search
This article is developing and not approved.
Main Article
Discussion
Related Articles  [?]
Bibliography  [?]
External Links  [?]
Citable Version  [?]
 
This editable Main Article is under development and subject to a disclaimer.

Vector rotations are widely used not only in the sciences, such as physics, chemistry and mathematics, but are critical for graphics computations in computer game programs and navigation in space. A typical example used in computer games would be calculating the graphics for a military tank rolling up a slanted hill, the relative rotation of the tank's turret, and the elevation of the tanks' barrel. Although a rotation matrix for each point of the tank could be calculated individually, a more economical method is to calculate a single rotation matrix for the entire tank and apply that solution to every current position of the tank as it rolls up the hill. Additional rotations are then used for the turret rotation by a second multiplication.

Methods

A variety of methods can be used to determine the rotation matrix (in 3D or 4D space) needed to convert vector V1 into vector V2. Because they provide non-unique results, inverse trigonometry functions should only be used with great caution. Quaternions, a 4-dimensional approach in 3D space, can also be used, and this method has devoted followers and critics. Although several 3D matrix rotation methods can be used, the method of Hughes (J. Graphics Tools, 2000) is particularly fast, because it avoids time-consuming inverse trigonometry and square root calculations, and avoids computational pitfalls of instability inherent to some of the previous methods.

Method of Moller and Hughes

The sum of two reflections is a rotation, and the Hughes method relies on this fact, using the reflections defined by the Householder matrix to construct a rotation matrix by summing two reflections about either the X, Y or Z-axis, using the axis most orthogonal to the starting vector. Is is important to note that this method only works for unit vectors, so translation and scaling may be required before performing the vector rotation.

Take arbitrary starting direction unit vector V1 and desired final unit direction vector V2 defined as:

Choose the reflection vector P as the unit vector most orthogonal to V1 in the following manner:

Define two new vectors u and v:

= P -
= P -

Then the elements of the rotation matrix R which rotates V1 into V2 (that is R(V1) = V2) can be calculated simply by multiplication and dot products, without using either inverse trigonometry or square roots, as:

where = 1 if i=j, otherwise = 0

References

Tomas Moller and John F. Hughes, J. Graphics Tools, 4(4):1-4, 2000.