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

Converts to another matrix type.