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

Transforms a 2D position through matrix.