示例#1
0
 public Interpolator(Interpolator other)
 {
     X    = other.X;
     Y    = other.Y;
     Y2   = other.Y2;
     Size = other.Size;
 }
示例#2
0
 public Interpolator2D(Interpolator2D other)
 {
     X    = other.X;
     Size = other.Size;
     Y    = new Interpolator[Size];
     for (int i = 0; i < Size; i++)
     {
         Y[i] = new Interpolator(other.Y[i]);
     }
 }