(t, b, c, d)
| 2 | |
| 3 | |
| 4 | def 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 | |
| 15 | def OUT_QUART(t, b, c, d): |
nothing calls this directly
no outgoing calls
no test coverage detected