[][src]Function skeletal_animation::math::col_mat4x3_transform_vec3

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

Transforms a 3D vector through matrix.

To include the translate component, use the transform_pos variant.