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