Documented the one pole filter

This commit is contained in:
Paul Ferrand 2019-11-30 00:53:22 +01:00
parent f315a75d35
commit d30aa26c70

View file

@ -29,6 +29,12 @@
namespace sfz
{
/**
* @brief An implementation of a one pole filter. This is a scalar
* implementation.
*
* @tparam Type the underlying type of the filter.
*/
template <class Type = float>
class OnePoleFilter {
public:
@ -137,4 +143,4 @@ private:
state += 2 * intermediate;
}
};
}
}