(t, b, c, d)
| 48 | |
| 49 | |
| 50 | def 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 | |
| 61 | def OUT_BOUNCE(t, b, c, d): |
nothing calls this directly
no outgoing calls
no test coverage detected