Ejemplo n.º 1
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The FilteredPointList from which to copy</param>
 public FilteredPointList(FilteredPointList rhs)
 {
     _x             = (double[])rhs._x.Clone();
     _y             = (double[])rhs._y.Clone();
     _minBoundIndex = rhs._minBoundIndex;
     _maxBoundIndex = rhs._maxBoundIndex;
     _maxPts        = rhs._maxPts;
 }
Ejemplo n.º 2
0
		/// <summary>
		/// The Copy Constructor
		/// </summary>
		/// <param name="rhs">The FilteredPointList from which to copy</param>
		public FilteredPointList( FilteredPointList rhs )
		{
			_x = (double[]) rhs._x.Clone();
			_y = (double[]) rhs._y.Clone();
			_minBoundIndex = rhs._minBoundIndex;
			_maxBoundIndex = rhs._maxBoundIndex;
			_maxPts = rhs._maxPts;

		}