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

Computes the inverse of a 3x4 matrix.