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; }