pub fn mat4x3_det<T>(mat: [[T; 3]; 4]) -> Twhere
    T: Copy + Add<Output = T> + Mul<Output = T> + Sub<Output = T>,
Expand description

Computes the determinant of a matrix.