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