[][src]Function vecmath::col_mat3x2_transform_vec2

pub fn col_mat3x2_transform_vec2<T>(
    mat: Matrix3x2<T>,
    a: Vector2<T>
) -> Vector2<T> where
    T: Copy + Add<T, Output = T> + Mul<T, Output = T>, 

Transforms a 2D vector through matrix.

To include the translate component, use the transform_pos variant.