Searched refs:Pow3 (Results 1 – 1 of 1) sorted by relevance
32 float Pow3(float v) in Pow3() function77 return Pow3(t); in EaseInCubic()81 return 1.f - Pow3(1.f - t); in EaseOutCubic()88 return 1.f - (Pow3(-2.f * t + 2.f) / 2.f); in EaseInOutCubic()166 return c3 * Pow3(t) - c1 * Pow2(t); in EaseInBack()172 return 1.f + c3 * Pow3(t - 1.f) + c1 * Pow2(t - 1.f); in EaseOutBack()