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