Open tap opened 9 years ago
For example, instead of
filter.freq = 500;
We could have:
LFO lfo("sine", 0.5hz); filter.freq = lfo;
LFO lfo("sine", 0.5hz);
filter.freq = lfo;
Relates to discussion of gverb implementation brainstorm with @nwolek
For example, instead of
filter.freq = 500;
We could have:
LFO lfo("sine", 0.5hz);
filter.freq = lfo;