public static PointO FromOffset(PointO from, PointO to) { return(new PointO(to.X - from.X, to.Y - from.Y)); }
public void Offset(PointO offset) { X += offset.X; Y += offset.Y; }