| 11 | #include "LfoEngine.h" |
| 12 | |
| 13 | LfoEngine::LfoEngine() |
| 14 | { |
| 15 | // The size of the lookup table (1024) is a good balance between precision and memory usage. |
| 16 | wavetable.initialise([](float x) |
| 17 | { return 0.0f; }, |
| 18 | 1024); // Initialize with silence |
| 19 | } |
| 20 | |
| 21 | void LfoEngine::reset() |
| 22 | { |
nothing calls this directly
no test coverage detected