pub type Vec4 = Vector4<f64>;Expand description
Vector with four elements.
Aliased Type§
#[repr(C)]pub struct Vec4 {
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.