pub fn mat2<T>( m11: T, m12: T, m21: T, m22: T, ) -> Matrix<T, Const<2>, Const<2>, ArrayStorage<T, 2, 2>>where T: Scalar,
Create a new 2x2 matrix.