Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
}
232
float cubicEaseOut(float time)
233
{
234
time -= 1;
235
return (time * time * time + 1);
236
}
237
float cubicEaseInOut(float time)
238
{
239
time = time * 2;
Callers
1
tweenTo
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected