/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The PointPairList from which to copy</param> public BasicArrayPointList( BasicArrayPointList rhs ) { x = (double[]) rhs.x.Clone(); y = (double[]) rhs.y.Clone(); }
/// <summary> /// The Copy Constructor /// </summary> /// <param name="rhs">The PointPairList from which to copy</param> public BasicArrayPointList(BasicArrayPointList rhs) { x = (double[])rhs.x.Clone(); y = (double[])rhs.y.Clone(); }