[−][src]Struct cgmath::Euler
A set of Euler angles representing a rotation in three-dimensional space.
This type is marked as #[repr(C)]
.
The axis rotation sequence is XYZ. That is, the rotation is first around the X axis, then the Y axis, and lastly the Z axis (using intrinsic rotations). Since all three rotation axes are used, the angles are Tait–Bryan angles rather than proper Euler angles.
Ranges
- x: [-pi, pi]
- y: [-pi/2, pi/2]
- z: [-pi, pi]
Defining rotations using Euler angles
Note that while Euler angles are intuitive to define, they are prone to
gimbal lock and are challenging to interpolate between. Instead we
recommend that you convert them to a more robust representation, such as a
quaternion or a rotation matrix. To this end, From<Euler<A>>
conversions
are provided for the following types:
For example, to define a quaternion that applies the following:
- a 90° rotation around the x axis
- a 45° rotation around the y axis
- a 15° rotation around the z axis
you can use the following code:
use cgmath::{Deg, Euler, Quaternion}; let rotation = Quaternion::from(Euler { x: Deg(90.0), y: Deg(45.0), z: Deg(15.0), });
Fields
x: A
The angle to apply around the x axis. Also known at the pitch.
y: A
The angle to apply around the y axis. Also known at the yaw.
z: A
The angle to apply around the z axis. Also known at the roll.
Methods
impl<A: Angle> Euler<A>
[src]
pub fn new(x: A, y: A, z: A) -> Euler<A>
[src]
Construct a set of euler angles.
Arguments
x
- The angle to apply around the x axis. Also known at the pitch.y
- The angle to apply around the y axis. Also known at the yaw.z
- The angle to apply around the z axis. Also known at the roll.
Trait Implementations
impl<A: Copy + Angle> Copy for Euler<A>
[src]
impl<A: Eq + Angle> Eq for Euler<A>
[src]
impl<A: Clone + Angle> Clone for Euler<A>
[src]
fn clone(&self) -> Euler<A>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl<A: PartialEq + Angle> PartialEq<Euler<A>> for Euler<A>
[src]
impl<A> From<Euler<A>> for Matrix3<A::Unitless> where
A: Angle + Into<Rad<<A as Angle>::Unitless>>,
[src]
A: Angle + Into<Rad<<A as Angle>::Unitless>>,
impl<A> From<Euler<A>> for Matrix4<A::Unitless> where
A: Angle + Into<Rad<<A as Angle>::Unitless>>,
[src]
A: Angle + Into<Rad<<A as Angle>::Unitless>>,
impl<A> From<Euler<A>> for Quaternion<A::Unitless> where
A: Angle + Into<Rad<<A as Angle>::Unitless>>,
[src]
A: Angle + Into<Rad<<A as Angle>::Unitless>>,
fn from(src: Euler<A>) -> Quaternion<A::Unitless>
[src]
impl<S: BaseFloat> From<Quaternion<S>> for Euler<Rad<S>>
[src]
fn from(src: Quaternion<S>) -> Euler<Rad<S>>
[src]
impl<S, A: Angle + From<S>> From<EulerAngles<S, IntraXYZ>> for Euler<A>
[src]
fn from(mint: EulerAngles<S, IntraXYZ>) -> Self
[src]
impl<A: Angle> From<Euler<A>> for Basis3<A::Unitless> where
A: Into<Rad<<A as Angle>::Unitless>>,
[src]
A: Into<Rad<<A as Angle>::Unitless>>,
fn from(src: Euler<A>) -> Basis3<A::Unitless>
[src]
Create a three-dimensional rotation matrix from a set of euler angles.
impl<S: Clone, A: Angle + Into<S>> Into<EulerAngles<S, IntraXYZ>> for Euler<A>
[src]
fn into(self) -> EulerAngles<S, IntraXYZ>
[src]
impl<A: Debug + Angle> Debug for Euler<A>
[src]
impl<A: Angle> ApproxEq for Euler<A>
[src]
type Epsilon = A::Epsilon
Used for specifying relative comparisons.
fn default_epsilon() -> A::Epsilon
[src]
fn default_max_relative() -> A::Epsilon
[src]
fn default_max_ulps() -> u32
[src]
fn relative_eq(
&self,
other: &Self,
epsilon: A::Epsilon,
max_relative: A::Epsilon
) -> bool
[src]
&self,
other: &Self,
epsilon: A::Epsilon,
max_relative: A::Epsilon
) -> bool
fn ulps_eq(&self, other: &Self, epsilon: A::Epsilon, max_ulps: u32) -> bool
[src]
fn relative_ne(
&self,
other: &Self,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
[src]
&self,
other: &Self,
epsilon: Self::Epsilon,
max_relative: Self::Epsilon
) -> bool
The inverse of ApproxEq::relative_eq
.
fn ulps_ne(&self, other: &Self, epsilon: Self::Epsilon, max_ulps: u32) -> bool
[src]
The inverse of ApproxEq::ulps_eq
.
impl<A: Angle + Rand> Rand for Euler<A>
[src]
Auto Trait Implementations
impl<A> Unpin for Euler<A> where
A: Unpin,
A: Unpin,
impl<A> Sync for Euler<A> where
A: Sync,
A: Sync,
impl<A> Send for Euler<A> where
A: Send,
A: Send,
impl<A> UnwindSafe for Euler<A> where
A: UnwindSafe,
A: UnwindSafe,
impl<A> RefUnwindSafe for Euler<A> where
A: RefUnwindSafe,
A: RefUnwindSafe,
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,