3D Rotation(and Align) about an arbitrary axis
November 17th, 2006
2 comments
we need several steps to do this job.
1. translate to origin
2. rotate Z
3. rotate Y
Z-Axis Rotation
x’ = x*cos q – y*sin q
y’ = x*sin q + y*cos q
z’ = z
X-Axis Rotation
y’ = y*cos q – z*sin q
z’ = y*sin q + z*cos q
x’ = x
Y-Axis Rotation
z’ = z*cos q – x*sin q
x’ = z*sin q + x*cos q
y’ = y
