[feat]: Filter LFO (#23)

Reviewed-on: #23
Co-authored-by: HiveBeats <e1lama@protonmail.com>
Co-committed-by: HiveBeats <e1lama@protonmail.com>
This commit is contained in:
2024-01-17 05:00:26 +03:00
committed by e1lama
parent 2b4e3cb573
commit 8fc7fbfd30
17 changed files with 363 additions and 114 deletions

View File

@@ -4,7 +4,7 @@
class LowPassFilter : public Filter {
protected:
void CalculateCoefficients() override;
float GetSampleForFilterType() override;
public:
LowPassFilter();
@@ -13,3 +13,4 @@ class LowPassFilter : public Filter {
~LowPassFilter();
bool IsSameFilterType(FilterType type) override { return type == LowPass; };
};