Exemplo n.º 1
0
 public Point2D(Point2D other)
 {
     X = other.X;
     Y = other.Y;
 }
Exemplo n.º 2
0
 public Vector2D(Point2D other)
 {
     X = other.X;
     Y = other.Y;
 }