bouncyEaseOut static method
Implementation
static double bouncyEaseOut(double t) {
if (t < 4 / 11) return (121 * t * t) / 16;
if (t < 8 / 11) return (363 / 40 * t * t) - (99 / 10 * t) + 17 / 5;
if (t < 9 / 10)
return (4356 / 361 * t * t) - (35442 / 1805 * t) + 16061 / 1805;
return (54 / 5 * t * t) - (513 / 25 * t) + 268 / 25;
}