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

Function OUT_QUART

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

Source from the content-addressed store, hash-verified

13
14
15def OUT_QUART(t, b, c, d):
16 t = float(t)
17 b = float(b)
18 c = float(c)
19 d = float(d)
20
21 t = t / d - 1
22
23 return -c * (t * t * t * t - 1) + b
24
25
26def INOUT_CIRC(t, b, c, d):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected