pub fn col_mat4x3_mul<T>(a: [[T; 3]; 4], b: [[T; 3]; 4]) -> [[T; 3]; 4]where
    T: Copy + Add<Output = T> + Mul<Output = T>,
Expand description

Multiplies two matrices.