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: f32Real part of the quaternion.
x: f32The coefficient of $i$.
y: f32The coefficient of $j$.
z: f32The coefficient of $k$.