[][src]Type Definition doem_math::SquareMatrix

type SquareMatrix<const M: usize> = Matrix<M, M>;

Methods

impl<const M: usize> SquareMatrix<M>[src]

pub fn identity() -> Self[src]

pub fn get_translation(translation: &Vector<{ M - 1 }>) -> Self[src]

pub fn get_scaling<const P: usize>(scaling: &Vector<P>) -> Self[src]

pub fn get_rotation_x(angle: Scalar) -> Self[src]

pub fn get_rotation_y(angle: Scalar) -> Self[src]

pub fn get_rotation_z(angle: Scalar) -> Self[src]