lerpInt function

double lerpInt(
  1. int a,
  2. int b,
  3. double t
)

see sky_engine/lib/ui/lerp.dart

Implementation

double lerpInt(int a, int b, double t) => a + (b - a) * t;