pub type Vec3 = Vec3;Expand description
3D vector type alias.
backed by glam::Vec3. use for general-purpose 3D math and component storage.
Aliased Type§
#[repr(C)]pub struct Vec3 {
pub x: f32,
pub y: f32,
pub z: f32,
}Fields§
§x: f32§y: f32§z: f32