Function vecmath::col_mat4x3_transform_vec3 [−][src]
pub fn col_mat4x3_transform_vec3<T>(
mat: Matrix4x3<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.