pub fn mat4_sub<T>(a: [[T; 4]; 4], b: [[T; 4]; 4]) -> [[T; 4]; 4]where
    T: Copy + Sub<Output = T>,
Expand description

Subtracts ‘b’ from ‘a’.