Esempio n. 1
0
 public void interpolate(InterpolatorBase x, InterpolatorBase y)
 {
     this.currentInterpolatorX = x;
     this.currentInterpolatorY = y;
     x.Start();
     y.Start();
 }
 public void interpolate(InterpolatorBase x, InterpolatorBase y)
 {
     this.currentInterpolatorX = x;
     this.currentInterpolatorY = y;
     x.Start();
     y.Start();
 }
 public void interpolateY(InterpolatorBase interpolator)
 {
     interpolator.Start();
     this.currentInterpolatorY = interpolator;
 }
Esempio n. 4
0
 public void interpolateY(InterpolatorBase interpolator)
 {
     interpolator.Start();
     this.currentInterpolatorY = interpolator;
 }