/////////////////////////////////////////////////////////////////////// /// <summary> /// Initialize a point from another point /// </summary> /////////////////////////////////////////////////////////////////////// public Point2(Point2 copyPt) { x = copyPt.x; y = copyPt.y; }