vote up 1 vote down star
2

I have a 3D point in cartesian coordinates, how can I get the euler rotation angles of it based on its distance from 0,0,0?

flag

3 Answers

vote up 4 vote down check

Is this what you're after?

According to Euler's rotation theory, you can describe a coordinate rotation with the Euler angles phi, theta, and psi as shown below: alt text

  1. Rotate the X-, Y-, and Z-axes about the Z-axis by phi(–pi < phi leqpi), resulting in the X'-, Y'-, and Z-axes.
  2. Rotate the X'-, Y'-, and Z-axes about the X'-axis by theta (0 leq theta leq pi), resulting in the X'-, Y''-, and Z'-axes.
  3. Rotate the X'-, Y''-, and Z'-axes about the Z'-axis by psi (–pi < psi leq pi), resulting in the X''-, Y'''-, and Z'-axes.

If you express the rotation of point (x, y, z) in terms of the following three matrices B, C, and D:

link text alt text alt text

the new coordinates, (x', y', z'), are

alt text

where A = BCD.

link|flag
Wow, impressive math. So I'm to do this with a 3D Matrix? I'm not sure if my platform has a 3D Matrix class... can I do this manually using sin(), cos(), tan() ?? – Jeremy Rudd Aug 9 at 18:04
You can apply the individual transformations from the matrix yourself. Remember it is just a notation for a set of calculations. – Rich Seller Aug 9 at 18:12
vote up 0 vote down

Talking about the rotation of axes, I think step 3 should have been the rotation of X'-, Y''-, and Z'-axes about the Y''-axis.

link|flag
vote up 4 vote down

Rich Seller's answer shows you how to rotate a point from one 3-D coordinate system to another system, given a set of Euler angles describing the rotation between the two coordinate systems.

But it sounds like you're asking for something different:

You have: 3-D coordinates of a single point

You want: a set of Euler angles

If that's what you're asking for, you don't have enough information. To find the Euler angles, you'd need coordinates of at least two points, in both coordinate systems, to determine the rotation from one coordinate system into the other.

You should also be aware that Euler angles can be ambiguous: Rich's answer assumes the rotations are applied to Z, then X', then Z', but that's not standardized. If you have to interoperate with some other code using Euler angles, you need to make sure you're using the same convention.

You might want to consider using rotation matrices or quaternions instead of Euler angles.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.