[][src]Struct aljabar::Euler

#[repr(C)]
pub struct Euler<T> {
    pub x: T,
    pub y: T,
    pub z: T,
}

A representation of a rotation in three dimensional space. Each component is the rotation around its respective axis in radians.

Fields

x: Ty: Tz: T

Trait Implementations

impl<T> From<Euler<T>> for Orthonormal<T, 3> where
    T: Angle + Copy + Clone
[src]

impl<T> From<Euler<T>> for Quaternion<T> where
    T: Angle + Clone
[src]

Auto Trait Implementations

impl<T> Send for Euler<T> where
    T: Send

impl<T> Sync for Euler<T> where
    T: Sync

impl<T> Unpin for Euler<T> where
    T: Unpin

impl<T> UnwindSafe for Euler<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for Euler<T> where
    T: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]