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(); }