[][src]Struct dcmimu::EulerAngles

pub struct EulerAngles {
    pub yaw: f32,
    pub pitch: f32,
    pub roll: f32,
}

Represents three dimensions:

  • yaw, nose left or right about an axis running up and down;
  • pitch, nose up or down about an axis running from wing to wing;
  • roll, rotation about an axis running from nose to tail. The axes are alternatively designated as vertical, transverse, and longitudinal respectively. See https://en.wikipedia.org/wiki/Euler_angles and https://en.wikipedia.org/wiki/Aircraft_principal_axes.

Fields

yaw: f32pitch: f32roll: f32

Trait Implementations

impl Clone for EulerAngles[src]

impl Copy for EulerAngles[src]

impl Debug for EulerAngles[src]

impl Default for EulerAngles[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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.