Exemplo n.º 1
0
 public static PointO FromOffset(PointO from, PointO to)
 {
     return(new PointO(to.X - from.X, to.Y - from.Y));
 }
Exemplo n.º 2
0
 public void Offset(PointO offset)
 {
     X += offset.X;
     Y += offset.Y;
 }