Struct dcmimu::EulerAngles[][src]

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

Trait Implementations

impl Debug for EulerAngles
[src]

Formats the value using the given formatter. Read more

impl Clone for EulerAngles
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for EulerAngles
[src]

Auto Trait Implementations

impl Send for EulerAngles

impl Sync for EulerAngles