pub fn mat2x3_cast<T, U>(mat: [[T; 3]; 2]) -> [[U; 3]; 2]where
    T: Copy + Cast<U>,
Expand description

Converts to another matrix type.