mirror of
https://github.com/thestk/stk
synced 2026-02-03 08:06:16 +00:00
Version 0.99
This commit is contained in:
24
AllPass1.h
Normal file
24
AllPass1.h
Normal file
@@ -0,0 +1,24 @@
|
||||
/*******************************************/
|
||||
/* 1st order allpass filter. */
|
||||
/* by Perry R. Cook, 1995-96 */
|
||||
/* A special case of the one pole */
|
||||
/* one zero filter. */
|
||||
/*******************************************/
|
||||
|
||||
#include "Filter.h"
|
||||
|
||||
#if !defined(__AllPass1_h)
|
||||
#define __AllPass1_h
|
||||
|
||||
#include "Filter.h"
|
||||
|
||||
class AllPass1 : Filter
|
||||
{
|
||||
public:
|
||||
AllPass1();
|
||||
~AllPass1();
|
||||
void clear();
|
||||
MY_FLOAT tick(MY_FLOAT sample);
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user