Type Alias Vector3f

Source
pub type Vector3f = Vector3<f32>;
Expand description

export Vector3 as Vector3f

Aliased Type§

#[repr(C)]
pub struct Vector3f { pub x: f32, pub y: f32, pub z: f32, }

Fields§

§x: f32

X coordinate of the vector.

§y: f32

Y coordinate of the vector.

§z: f32

Z coordinate of the vector.