feat: adding lfo to filter

This commit is contained in:
Liam Kerr 2026-08-12 00:05:50 +01:00
parent fe594a5494
commit d8c1c90f15
6 changed files with 130 additions and 20 deletions

View file

@ -22,6 +22,8 @@ void Oscillator::process(float *out, uint32_t frames) {
}
}
void Oscillator::reset() { phase_ = 0; }
void Oscillator::recalc_() { inc_ = freq_ / sampleRate_; }
void Oscillator::setFrequency(float newFreq) {