lerp static method

FractionalOffset? lerp(
  1. FractionalOffset? a,
  2. FractionalOffset? b,
  3. double t
)
override

Linearly interpolate between two FractionalOffsets.

If either is null, this function interpolates from FractionalOffset.center.

The t argument represents position on the timeline, with 0.0 meaning that the interpolation has not started, returning a (or something equivalent to a), 1.0 meaning that the interpolation has finished, returning b (or something equivalent to b), and values in between meaning that the interpolation is at the relevant point on the timeline between a and b. The interpolation can be extrapolated beyond 0.0 and 1.0, so negative values and values greater than 1.0 are valid (and can easily be generated by curves such as Curves.elasticInOut).

Values for t are usually obtained from an Animation<double>, such as an AnimationController.

Implementation

static FractionalOffset? lerp(FractionalOffset? a, FractionalOffset? b, double t) {
  if (identical(a, b)) {
    return a;
  }
  if (a == null) {
    return FractionalOffset(ui.lerpDouble(0.5, b!.dx, t)!, ui.lerpDouble(0.5, b.dy, t)!);
  }
  if (b == null) {
    return FractionalOffset(ui.lerpDouble(a.dx, 0.5, t)!, ui.lerpDouble(a.dy, 0.5, t)!);
  }
  return FractionalOffset(ui.lerpDouble(a.dx, b.dx, t)!, ui.lerpDouble(a.dy, b.dy, t)!);
}