/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see c_ref="PolyObj"/> object from which to copy</param> public PolyObj(PolyObj rhs) : base(rhs) { rhs._points = (PointD[])_points.Clone(); rhs._isClosedFigure = _isClosedFigure; }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The <see c_ref="PolyObj"/> object from which to copy</param> public PolyObj( PolyObj rhs ) : base( rhs ) { rhs._points = (PointD[]) _points.Clone(); rhs._isClosedFigure = _isClosedFigure; }