Method Euler
Euler(quaternion, RotationOrder)
Returns the Euler angle representation of the quaternion. The returned angles depend on the specified order to apply the three rotations around the principal axes. All rotation angles are in radians and clockwise when looking along the rotation axis towards the origin. When the rotation order is known at compile time, to get the best performance you should use the specific Euler rotation constructors such as EulerZXY(...).
Declaration
public static float3 Euler(quaternion q, math.RotationOrder order = RotationOrder.Default)
Parameters
Type | Name | Description |
---|---|---|
quaternion | q | The quaternion to convert to Euler angles. |
math.RotationOrder | order | The order in which the rotations are applied. |
Returns
Type | Description |
---|---|
float3 | The Euler angle representation of the quaternion in the specified order. |