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

Transforms a 4D vector through a matrix.