pub type TyTransformF32 = TyTransform<f32>;Expand description
A TyTransform with f32 components.
Aliased Type§
pub struct TyTransformF32 {
pub position: TyVector3<f32>,
pub rotation: TyQuaternion<f32>,
pub scale: TyVector3<f32>,
}Fields§
§position: TyVector3<f32>The translation, which may be fractional.
rotation: TyQuaternion<f32>The rotation, a unit quaternion.
scale: TyVector3<f32>The per-axis scale.