Bevisuali.UX.ExtWPF.Subtract C# (CSharp) Method

Subtract() public static method

public static Subtract ( this a, Point b ) : Point
a this
b Point
return Point
        public static Point Subtract(this Point a, Point b)
        {
            return new Point(a.X - b.X, a.Y - b.Y);
        }