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

Transforms a 3D vector through a matrix.