Function vecmath::row_mat3x4_transform_vec3 [] [src]

pub fn row_mat3x4_transform_vec3<T>(
    mat: Matrix3x4<T>,
    a: Vector3<T>
) -> Vector3<T> 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.