(t, b, c, d)
| 37 | |
| 38 | |
| 39 | def IN_CUBIC(t, b, c, d): |
| 40 | t = float(t) |
| 41 | b = float(b) |
| 42 | c = float(c) |
| 43 | d = float(d) |
| 44 | |
| 45 | t /= d |
| 46 | |
| 47 | return c * t * t * t + b |
| 48 | |
| 49 | |
| 50 | def OUT_QUAD(t, b, c, d): |
nothing calls this directly
no outgoing calls
no test coverage detected