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

Function cubicEaseOut

core/2d/TweenFunction.cpp:232–236  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230 return time * time * time;
231}
232float cubicEaseOut(float time)
233{
234 time -= 1;
235 return (time * time * time + 1);
236}
237float cubicEaseInOut(float time)
238{
239 time = time * 2;

Callers 1

tweenToFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected