MCPcopy Create free account
hub / github.com/axmolengine/axmol / expoEaseOut

Function expoEaseOut

core/2d/TweenFunction.cpp:293–296  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

291 return time == 0 ? 0 : powf(2, 10 * (time / 1 - 1)) - 1 * 0.001f;
292}
293float expoEaseOut(float time)
294{
295 return time == 1 ? 1 : (-powf(2, -10 * time / 1) + 1);
296}
297float expoEaseInOut(float time)
298{
299 if (time == 0 || time == 1)

Callers 2

updateParticleQuadsMethod · 0.85
tweenToFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected