[][src]Function skeletal_animation::math::row_mat3x4_transform_vec3

pub fn row_mat3x4_transform_vec3<T>(mat: [[T; 4]; 3], 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.