├── .gitignore ├── BiQuad.cpp ├── BiQuad.h ├── CMakeLists.txt ├── LICENSE ├── README.md └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomlankhorst/biquad/HEAD/.gitignore -------------------------------------------------------------------------------- /BiQuad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomlankhorst/biquad/HEAD/BiQuad.cpp -------------------------------------------------------------------------------- /BiQuad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomlankhorst/biquad/HEAD/BiQuad.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomlankhorst/biquad/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomlankhorst/biquad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomlankhorst/biquad/HEAD/README.md -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomlankhorst/biquad/HEAD/main.cpp --------------------------------------------------------------------------------