EaseExpoIn method

double EaseExpoIn(
  1. num t,
  2. num b,
  3. num c,
  4. num d,
)

Implementation

double EaseExpoIn(num t, num b, num c, num d) {
  return ((t == 0.0) ? b : (c*math.pow(2.0, 10.0*(t/d - 1.0)) + b)).toDouble();
}