| 91 | return math::rescale(x, a, b, yMin, yMax); |
| 92 | } |
| 93 | DEPRECATED inline float crossf(float a, float b, float frac) { |
| 94 | return crossfade(a, b, frac); |
| 95 | } |
| 96 | DEPRECATED inline float interpf(const float* p, float x) { |
| 97 | return interpolateLinear(p, x); |
| 98 | } |
nothing calls this directly
no test coverage detected