lerp static method

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

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

Implementation

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