コード例 #1
0
 public bool IsSamePoint(CADPoint other)
 {
     return(this.X == other.X && this.Y == other.Y);
 }
コード例 #2
0
 public void Decrease(CADPoint pt)
 {
     X -= pt.X;
     Y -= pt.Y;
 }