Type Alias Vec4

Source
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: f64

The x component of the vector.

§y: f64

The y component of the vector.

§z: f64

The z component of the vector.

§w: f64

The w component of the vector.