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