Home
last modified time | relevance | path

Searched refs:Pow2 (Results 1 - 1 of 1) sorted by relevance

/foundation/graphic/graphic_3d/lume/metaobject/src/curves/
H A Deasing_curve.cpp28 float Pow2(float v) in Pow2() function
62 return Pow2(t); in EaseInQuad()
66 return 1.f - Pow2(1.f - t); in EaseOutQuad()
73 return 1.f - (Pow2(-2.f * t + 2.f) / 2.f); in EaseInOutQuad()
149 return 1.f - BASE_NS::Math::sqrt(1.f - Pow2(t)); in EaseInCirc()
153 return BASE_NS::Math::sqrt(1.f - Pow2(t - 1.f)); in EaseOutCirc()
158 return (1.f - BASE_NS::Math::sqrt(1.f - Pow2(2.f * t))) / 2.f; in EaseInOutCirc()
160 return (BASE_NS::Math::sqrt(1.f - Pow2(-2.f * t + 2.f)) + 1.f) / 2.f; in EaseInOutCirc()
166 return c3 * Pow3(t) - c1 * Pow2(t); in EaseInBack()
172 return 1.f + c3 * Pow3(t - 1.f) + c1 * Pow2( in EaseOutBack()
[all...]

Completed in 1 milliseconds