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

Transforms a 3D vector through matrix.

To include the translate component, use the transform_pos variant.