pub type Basisf = Basis<f32>;Expand description
Single-precision basis.
Aliased Type§
#[repr(C)]pub struct Basisf {
pub x_axis: Vector3<f32>,
pub y_axis: Vector3<f32>,
pub z_axis: Vector3<f32>,
pub center: Vector3<f32>,
}Fields§
§x_axis: Vector3<f32>Basis X axis.
y_axis: Vector3<f32>Basis Y axis.
z_axis: Vector3<f32>Basis Z axis.
center: Vector3<f32>Basis origin (center).