pub fn mat4x3_cast<T, U>(m: [[T; 3]; 4]) -> [[U; 3]; 4]where
    T: Copy + Cast<U>,
Expand description

Converts to another matrix type.