pub type Vec4f = Vector4<f32>;Expand description
4D single-precision float vector.
Aliased Type§
#[repr(C)]pub struct Vec4f {
pub x: f32,
pub y: f32,
pub z: f32,
pub w: f32,
}Fields§
§x: f32X component.
y: f32Y component.
z: f32Z component.
w: f32W component.