use na::{Real, Unit, Rotation3, Matrix4, U3, U4}; use traits::Number; use aliases::{Vec, Mat}; /// Builds a rotation 4 * 4 matrix created from an axis of 3 scalars and an angle expressed in radians. pub fn rotation(angle: N, v: &Vec) -> Mat { Rotation3::from_axis_angle(&Unit::new_normalize(*v), angle).to_homogeneous() } /// A 4 * 4 scale matrix created from a vector of 3 components. pub fn scaling(v: &Vec) -> Mat { Matrix4::new_nonuniform_scaling(v) } /// Transforms a matrix with a translation 4 * 4 matrix created from 3 scalars. pub fn translation(v: &Vec) -> Mat { Matrix4::new_translation(v) }