pub type Vector3 = Vec3;Expand description
The vector type used by Avian. This is always a 3D vector regardless of the chosen dimension.
Aliased Type§
#[repr(C)]pub struct Vector3 {
pub x: f32,
pub y: f32,
pub z: f32,
}Fields§
§x: f32§y: f32§z: f32