pub type Vector4 = Vector4<f64>;Expand description
redefinition, scalar = f64
Aliased Type§
#[repr(C)]pub struct Vector4 {
pub x: f64,
pub y: f64,
pub z: f64,
pub w: f64,
}Fields§
§x: f64The x component of the vector.
y: f64The y component of the vector.
z: f64The z component of the vector.
w: f64The w component of the vector.