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

Function OUT_CIRC

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

Source from the content-addressed store, hash-verified

2
3
4def OUT_CIRC(t, b, c, d):
5 t = float(t)
6 b = float(b)
7 c = float(c)
8 d = float(d)
9
10 t = t / d - 1
11
12 return c * math.sqrt(1 - t * t) + b
13
14
15def OUT_QUART(t, b, c, d):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected