public static Point2 Subtract(Point2 pt, Size2 sz) { return(new Point2(pt.X - sz.Width, pt.Y - sz.Height)); }
public static Point2 Add(Point2 pt, Size2 sz) { return(new Point2(pt.X + sz.Width, pt.Y + sz.Height)); }