Esempio n. 1
0
 /// <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;
 }
Esempio n. 2
0
		/// <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;
		}