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

Function OUT_QUAD

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

Source from the content-addressed store, hash-verified

48
49
50def OUT_QUAD(t, b, c, d):
51 t = float(t)
52 b = float(b)
53 c = float(c)
54 d = float(d)
55
56 t /= d
57
58 return -c * t * (t - 2) + b
59
60
61def OUT_BOUNCE(t, b, c, d):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected