lerp static method

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

Linearly interpolates the provided objects based on the given t value.

Implementation

static Smallest lerp(Smallest a, Smallest? b, double t) {
  return Smallest._(
    regular: SmallestRegular.lerp(a.regular, b?.regular, t),
  );
}