lerp static method

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

Linearly interpolate between two EdgeInsetsDirectional.

If either is null, this function interpolates from EdgeInsetsDirectional.zero.

To interpolate between two EdgeInsetsGeometry objects of arbitrary type (either EdgeInsets or EdgeInsetsDirectional), consider the EdgeInsetsGeometry.lerp static method.

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 EdgeInsetsDirectional? lerp(EdgeInsetsDirectional? a, EdgeInsetsDirectional? b, double t) {
  if (identical(a, b)) {
    return a;
  }
  if (a == null) {
    return b! * t;
  }
  if (b == null) {
    return a * (1.0 - t);
  }
  return EdgeInsetsDirectional.fromSTEB(
    ui.lerpDouble(a.start, b.start, t)!,
    ui.lerpDouble(a.top, b.top, t)!,
    ui.lerpDouble(a.end, b.end, t)!,
    ui.lerpDouble(a.bottom, b.bottom, t)!,
  );
}