pub fn col_mat3x2_transform_pos2<T>(mat: [[T; 2]; 3], a: [T; 2]) -> [T; 2]where
    T: Copy + Add<Output = T> + Mul<Output = T>,
Expand description

Transforms a 2D position through matrix.