lerp static method

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

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

Implementation

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