pub type Mat3<E, Descriptor> = Mat<3, 3, E, Descriptor>;
pub struct Mat3<E, Descriptor>(/* private fields */);
Construct a matrix from columns
Computes the determinant of the matrix
Computes the inverse of the matrix. If the determinant is zero - return None
None