lerp static method

BorderSide lerp(
  1. BorderSide a,
  2. BorderSide b,
  3. double t
)

Linearly interpolate between two border sides.

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 BorderSide lerp(BorderSide a, BorderSide b, double t) {
  if (identical(a, b)) {
    return a;
  }
  if (t == 0.0) {
    return a;
  }
  if (t == 1.0) {
    return b;
  }
  final double width = ui.lerpDouble(a.width, b.width, t)!;
  if (width < 0.0) {
    return BorderSide.none;
  }
  if (a.style == b.style && a.strokeAlign == b.strokeAlign) {
    return BorderSide(
      color: Color.lerp(a.color, b.color, t)!,
      width: width,
      style: a.style, // == b.style
      strokeAlign: a.strokeAlign, // == b.strokeAlign
    );
  }
  final Color colorA, colorB;
  switch (a.style) {
    case BorderStyle.solid:
      colorA = a.color;
    case BorderStyle.none:
      colorA = a.color.withAlpha(0x00);
  }
  switch (b.style) {
    case BorderStyle.solid:
      colorB = b.color;
    case BorderStyle.none:
      colorB = b.color.withAlpha(0x00);
  }
  if (a.strokeAlign != b.strokeAlign) {
    return BorderSide(
      color: Color.lerp(colorA, colorB, t)!,
      width: width,
      strokeAlign: ui.lerpDouble(a.strokeAlign, b.strokeAlign, t)!,
    );
  }
  return BorderSide(
    color: Color.lerp(colorA, colorB, t)!,
    width: width,
    strokeAlign: a.strokeAlign, // == b.strokeAlign
  );
}