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