Searched refs:EaseOutBounce (Results 1 – 1 of 1) sorted by relevance
219 float EaseOutBounce(float t) in EaseOutBounce() function236 return 1.f - EaseOutBounce(1.f - t); in EaseInBounce()241 return (1.f - EaseOutBounce(1.f - 2.f * t)) / 2.f; in EaseInOutBounce()243 return (1.f + EaseOutBounce(2.f * t - 1.f)) / 2.f; in EaseInOutBounce()