| 68 | } |
| 69 | |
| 70 | void setParameters(float fc, float q) { |
| 71 | float rootQ = std::sqrt(q); |
| 72 | stage1.setParameters(fc, rootQ); |
| 73 | stage2.setParameters(fc, rootQ); |
| 74 | } |
| 75 | |
| 76 | float process(float input, FilterMode mode) { |
| 77 | stage1.process(input); |
nothing calls this directly
no test coverage detected