Beispiel #1
0
 public Point2D(Point2D other)
 {
     X = other.X;
     Y = other.Y;
 }
Beispiel #2
0
 public Vector2D(Point2D other)
 {
     X = other.X;
     Y = other.Y;
 }