Exemple #1
0
 /// <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;
 }
Exemple #2
0
 /// <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;
 }