Place Ad Here

Rotating a 3D Coordinate System About The Origin

Rotating an orthogonal 3D coordinate system about its axes is tricky because there are multiple reference points to define a rotation and each rotation could be composed of multiple rotations.

To transform a point from the original system to the rotated system, we need to understand how the rotated axes relate to the original axes. If x1, x2, and x3 represent the three original axes and x1', x2', and x3' represent the rotated axes, we need the following nine angles.
Angles Between;

  1. x1' and x1 - Angle x11
  2. x1' and x2 - Angle x12
  3. x1' and x3 - Angle x13
  4. x2' and x1 - Angle x21
  5. x2' and x2 - Angle x22
  6. x2' and x3 - Angle x23
  7. x3' and x1 - Angle x31
  8. x3' and x2 - Angle x32
  9. x3' and x3 - Angle x33

But the way orthogonality works, all nine of these are not independent, instead, only three are independent and the rest of the six can be derived from the three.

Use the sliders present below to switch around the values and see how they interact with each other. Use the checkbox to fix a relation, a maximum of three can be fixed at a time. You can only change the slider whose value is fixed.


Old Coordinates: (0, 0, 0)
New Coordinates: (0,  0,  0)

Rotational transformation preserves the vector length.

Original Vector:(0)2+(0)2+(0)2=0.00\sqrt{(0)^2 + (0)^2 + (0)^2} = 0.00

New Vector:(0)2+(0)2+(0)2=0.00\sqrt{(0)^2 + (0)^2 + (0)^2} = 0.00

Place Ad Here