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

Function cubicEaseIn

core/2d/TweenFunction.cpp:228–231  ·  view source on GitHub ↗

Cubic Ease

Source from the content-addressed store, hash-verified

226
227// Cubic Ease
228float cubicEaseIn(float time)
229{
230 return time * time * time;
231}
232float cubicEaseOut(float time)
233{
234 time -= 1;

Callers 1

tweenToFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected