Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
228
float cubicEaseIn(float time)
229
{
230
return time * time * time;
231
}
232
float cubicEaseOut(float time)
233
{
234
time -= 1;
Callers
1
tweenTo
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected