public static Mat2 Abs(Mat2 m) { return(new Mat2(Vec2.Abs(m.x), Vec2.Abs(m.y))); }
public Mat2 Abs() { return(new Mat2(x.Abs(), y.Abs())); }