Example #1
0
 /// <summary>
 /// The Copy Constructor
 /// </summary>
 /// <param name="rhs">The XAxis object from which to copy</param>
 public CurveList(CurveList rhs)
 {
     MaxPts = rhs.MaxPts;
     rhs.ForEach(ci => Add((CurveItem)((ICloneable)ci).Clone()));
 }