pub type TyQuaternionF64 = TyQuaternion<f64>;Expand description
A TyQuaternion with f64 components.
Aliased Type§
pub struct TyQuaternionF64 {
pub x: f64,
pub y: f64,
pub z: f64,
pub w: f64,
}Fields§
§x: f64The x component.
y: f64The y component.
z: f64The z component.
w: f64The w (scalar) component.