lerp static method

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

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

Implementation

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