Q32

Type Alias Q32 

Source
pub type Q32 = Quaternion<f32>;
Expand description

Alias for a Quaternion<f32>.

Aliased Type§

pub struct Q32 {
    pub w: f32,
    pub x: f32,
    pub y: f32,
    pub z: f32,
}

Fields§

§w: f32

Real part of the quaternion.

§x: f32

The coefficient of $i$.

§y: f32

The coefficient of $j$.

§z: f32

The coefficient of $k$.