MCPcopy Create free account
hub / github.com/pyfa-org/Pyfa / IN_CUBIC

Function IN_CUBIC

gui/utils/anim_effects.py:39–47  ·  view source on GitHub ↗
(t, b, c, d)

Source from the content-addressed store, hash-verified

37
38
39def IN_CUBIC(t, b, c, d):
40 t = float(t)
41 b = float(b)
42 c = float(c)
43 d = float(d)
44
45 t /= d
46
47 return c * t * t * t + b
48
49
50def OUT_QUAD(t, b, c, d):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected