| 94 | return crossfade(a, b, frac); |
| 95 | } |
| 96 | DEPRECATED inline float interpf(const float* p, float x) { |
| 97 | return interpolateLinear(p, x); |
| 98 | } |
| 99 | DEPRECATED inline void complexMult(float* cr, float* ci, float ar, float ai, float br, float bi) { |
| 100 | complexMult(ar, ai, br, bi, cr, ci); |
| 101 | } |
nothing calls this directly
no test coverage detected