double EaseCircIn(num t, num b, num c, num d) { t /= d; return (-c*(math.sqrt(1.0 - t*t) - 1.0) + b); }