├── .gitmodules ├── LICENSE ├── README.md ├── SMC-2021-paper └── a-wave-digital-filter-modeling-library-for-faust.pdf ├── boilerplate.lib ├── examples ├── 01-second-order-passive │ ├── README.md │ └── secondorder.dsp ├── 02-diode-clipper │ ├── README.md │ └── diodeClipper.dsp ├── 03-pultec-eqp1a │ ├── README.md │ └── pultec.dsp ├── README.md ├── basssman-tonestack │ └── bassmanTonestack.dsp ├── chua-diode │ └── chuaDiode.dsp └── tube-screamer │ ├── reference_code │ └── lambert.cpp │ └── tubeScreamer.dsp └── testing-files ├── decomp-test.dsp ├── exported-cpp └── diode_model.cpp ├── functionTesting2.dsp ├── funtionTesting.dsp └── routes.lib /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/README.md -------------------------------------------------------------------------------- /SMC-2021-paper/a-wave-digital-filter-modeling-library-for-faust.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/SMC-2021-paper/a-wave-digital-filter-modeling-library-for-faust.pdf -------------------------------------------------------------------------------- /boilerplate.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/boilerplate.lib -------------------------------------------------------------------------------- /examples/01-second-order-passive/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/01-second-order-passive/secondorder.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/examples/01-second-order-passive/secondorder.dsp -------------------------------------------------------------------------------- /examples/02-diode-clipper/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/02-diode-clipper/diodeClipper.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/examples/02-diode-clipper/diodeClipper.dsp -------------------------------------------------------------------------------- /examples/03-pultec-eqp1a/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/03-pultec-eqp1a/pultec.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/examples/03-pultec-eqp1a/pultec.dsp -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/basssman-tonestack/bassmanTonestack.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/examples/basssman-tonestack/bassmanTonestack.dsp -------------------------------------------------------------------------------- /examples/chua-diode/chuaDiode.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/examples/chua-diode/chuaDiode.dsp -------------------------------------------------------------------------------- /examples/tube-screamer/reference_code/lambert.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/examples/tube-screamer/reference_code/lambert.cpp -------------------------------------------------------------------------------- /examples/tube-screamer/tubeScreamer.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/examples/tube-screamer/tubeScreamer.dsp -------------------------------------------------------------------------------- /testing-files/decomp-test.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/testing-files/decomp-test.dsp -------------------------------------------------------------------------------- /testing-files/exported-cpp/diode_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/testing-files/exported-cpp/diode_model.cpp -------------------------------------------------------------------------------- /testing-files/functionTesting2.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/testing-files/functionTesting2.dsp -------------------------------------------------------------------------------- /testing-files/funtionTesting.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/testing-files/funtionTesting.dsp -------------------------------------------------------------------------------- /testing-files/routes.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/droosenb/faust-wdf-library/HEAD/testing-files/routes.lib --------------------------------------------------------------------------------