コード例 #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();
 }
コード例 #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();
 }