Reviewed-on: #23 Co-authored-by: HiveBeats <e1lama@protonmail.com> Co-committed-by: HiveBeats <e1lama@protonmail.com>
17 lines
356 B
C++
17 lines
356 B
C++
#pragma once
|
|
|
|
#include "Filter.h"
|
|
|
|
class LowPassFilter : public Filter {
|
|
protected:
|
|
float GetSampleForFilterType() override;
|
|
|
|
public:
|
|
LowPassFilter();
|
|
LowPassFilter(Filter* filter);
|
|
LowPassFilter(float freq, float res, float q);
|
|
~LowPassFilter();
|
|
bool IsSameFilterType(FilterType type) override { return type == LowPass; };
|
|
};
|
|
|