| 16 | } |
| 17 | |
| 18 | std::unique_ptr<StandardFFTProcessor> MorphInteractor::createSpectralProcess(int index, int fftSize, int hopSize, int sampleRate, int numOverlaps, int, int) |
| 19 | { |
| 20 | return std::make_unique<MorphFFTProcessor>(fftSize, hopSize, hopSize * (index%numOverlaps), sampleRate, this->getPhaseBuffer(), &pReadArray); |
| 21 | } |
| 22 | |
| 23 | void MorphInteractor::controlPointsChanged(Array<float> controlPoints) { |
| 24 | m_morphPointsChanged = false; |
nothing calls this directly
no test coverage detected