Lerp this, to the given value, by the given progress.
double lerpTo(double to, double progress) => this + (to - this) * progress;