EaseExpoOut method

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

Implementation

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