EaseCircOut method

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

Implementation

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