├── .gitignore ├── Makefile ├── README.md ├── aanl.lib ├── all.lib ├── analyzers.lib ├── arch └── print_arch.cpp ├── basics.lib ├── compressors.lib ├── delays.lib ├── demos.lib ├── doc.lib ├── doc ├── Makefile ├── docs │ ├── about.md │ ├── community.md │ ├── contributing.md │ ├── css │ │ └── extra.css │ ├── index.md │ ├── organization.md │ └── standardFunctions.md ├── library.pdf ├── mkdocs.yml ├── scripts │ ├── faustlib2md.awk │ └── makeindex.awk └── theme │ ├── base.html │ ├── css │ └── base.css │ └── img │ ├── faustCode.jpg │ └── faustText.svg ├── docs ├── .nojekyll ├── 404.html ├── CNAME ├── about │ └── index.html ├── community │ └── index.html ├── contributing │ └── index.html ├── css │ ├── base.css │ ├── bootstrap.min.css │ ├── extra.css │ └── font-awesome.min.css ├── fonts │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── img │ ├── faustCode.jpg │ ├── faustText.svg │ ├── favicon.ico │ └── grid.png ├── index.html ├── js │ ├── base.js │ ├── bootstrap.min.js │ └── jquery-3.6.0.min.js ├── libs │ ├── aanl │ │ └── index.html │ ├── analyzers │ │ └── index.html │ ├── basics │ │ └── index.html │ ├── compressors │ │ └── index.html │ ├── delays │ │ └── index.html │ ├── demos │ │ └── index.html │ ├── dx7 │ │ ├── dx7 │ │ │ └── index.html │ │ ├── env │ │ │ └── index.html │ │ ├── lfo │ │ │ └── index.html │ │ ├── operator │ │ │ └── index.html │ │ └── pitchenv │ │ │ └── index.html │ ├── envelopes │ │ └── index.html │ ├── fds │ │ └── index.html │ ├── filters │ │ └── index.html │ ├── hoa │ │ └── index.html │ ├── index.html │ ├── interpolators │ │ └── index.html │ ├── linearalgebra │ │ └── index.html │ ├── maths │ │ └── index.html │ ├── mi │ │ └── index.html │ ├── misceffects │ │ └── index.html │ ├── noises │ │ └── index.html │ ├── oscillators │ │ └── index.html │ ├── phaflangers │ │ └── index.html │ ├── physmodels │ │ └── index.html │ ├── quantizers │ │ └── index.html │ ├── reducemaps │ │ └── index.html │ ├── reverbs │ │ └── index.html │ ├── routes │ │ └── index.html │ ├── signals │ │ └── index.html │ ├── soundfiles │ │ └── index.html │ ├── spats │ │ └── index.html │ ├── synths │ │ └── index.html │ ├── vaeffects │ │ └── index.html │ ├── version │ │ └── index.html │ ├── wdmodels │ │ └── index.html │ └── webaudio │ │ └── index.html ├── organization │ └── index.html ├── search │ ├── lunr.js │ ├── main.js │ ├── search_index.json │ └── worker.js ├── sitemap.xml ├── sitemap.xml.gz └── standardFunctions │ └── index.html ├── dx7 ├── dx7.lib ├── env.lib ├── lfo.lib ├── operator.lib └── pitchenv.lib ├── dx7presets ├── README.md ├── brass.syx ├── dx7_brass.syx.lib └── makelibs ├── embedded └── platform.lib ├── envelopes.lib ├── fds.lib ├── filters.lib ├── hoa.lib ├── install ├── instruments.lib ├── interpolators.lib ├── licenses └── stk-4.3.0.md ├── linearalgebra.lib ├── maths.lib ├── maxmsp.lib ├── mi.lib ├── misceffects.lib ├── modalmodels ├── carillonBell │ ├── .gitignore │ ├── build │ ├── carillonBell.obj │ ├── carillonBell.scad │ ├── carillonBell.svg │ └── description.md ├── churchBell │ ├── .gitignore │ ├── build │ ├── churchBell.obj │ ├── churchBell.scad │ ├── churchBell.svg │ └── description.md ├── englishBell │ ├── .gitignore │ ├── build │ ├── description.md │ ├── english.scad │ ├── englishBell.obj │ └── englishBell.svg ├── frenchBell │ ├── .gitignore │ ├── build │ ├── description.md │ ├── frenchBell.obj │ ├── frenchBell.scad │ └── frenchBell.svg ├── germanBell │ ├── .gitignore │ ├── build │ ├── description.md │ ├── germanBell.obj │ ├── germanBell.scad │ └── germanBell.svg ├── marimbaBar │ ├── .gitignore │ ├── build │ ├── description.md │ ├── marimbaBar.obj │ ├── marimbaBar.scad │ └── marimbaBar.svg ├── russianBell │ ├── .gitignore │ ├── build │ ├── description.md │ ├── russianBell.obj │ ├── russianBell.scad │ └── russianBell.svg └── standardBell │ ├── .gitignore │ ├── build │ ├── description.md │ ├── standardBell.obj │ ├── standardBell.scad │ └── standardBell.svg ├── noises.lib ├── old ├── effect.lib ├── filter.lib ├── math.lib ├── music.lib └── oscillator.lib ├── oscillators.lib ├── phaflangers.lib ├── physmodels.lib ├── platform.lib ├── quantizers.lib ├── reducemaps.lib ├── resources ├── .gitignore ├── Makefile └── README.md ├── reverbs.lib ├── routes.lib ├── scripts ├── extract_tests.sh └── floatdiff.py ├── sf.lib ├── signals.lib ├── soundfiles.lib ├── spats.lib ├── stdfaust.lib ├── synths.lib ├── tests ├── aanl_tests.dsp ├── analyzers_tests.dsp ├── assets │ └── silence.wav ├── basics_tests.dsp ├── compressors_tests.dsp ├── delays_tests.dsp ├── demos_tests.dsp ├── dx7_tests.dsp ├── envelopes_tests.dsp ├── fds_tests.dsp ├── filters_analog_sections_tests.dsp ├── filters_bandpass_bandstop_tests.dsp ├── filters_basic_comb_tests.dsp ├── filters_butterworth_tests.dsp ├── filters_delay_equalizing_allpass_tests.dsp ├── filters_direct_ladder_tests.dsp ├── filters_elliptic_bandpass_tests.dsp ├── filters_elliptic_tests.dsp ├── filters_filterbank_tests.dsp ├── filters_ladder_allpass_tests.dsp ├── filters_linkwitz_riley_tests.dsp ├── filters_mth_octave_filterbank_tests.dsp ├── filters_parametric_eq_tests.dsp ├── filters_pospass_tests.dsp ├── filters_resonator_tests.dsp ├── filters_state_variable_tests.dsp ├── filters_useful_special_tests.dsp ├── hoa_tests.dsp ├── interpolators_tests.dsp ├── linearalgebra_tests.dsp ├── maths_tests.dsp ├── mi_tests.dsp ├── misceffects_tests.dsp ├── noises_tests.dsp ├── oscillators_tests.dsp ├── phaflangers_tests.dsp ├── physmodels_tests.dsp ├── quantizers_tests.dsp ├── reducemaps_tests.dsp ├── reverbs_tests.dsp ├── routes_tests.dsp ├── signals_tests.dsp ├── soundfiles_tests.dsp ├── spats_tests.dsp ├── synths_tests.dsp ├── vaeffects_tests.dsp ├── wdmodels_tests.dsp └── webaudio_tests.dsp ├── tonestacks.lib ├── tubes.lib ├── unsupported └── dx7.lib ├── vaeffects.lib ├── version.lib ├── wdmodels.lib └── webaudio.lib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/README.md -------------------------------------------------------------------------------- /aanl.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/aanl.lib -------------------------------------------------------------------------------- /all.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/all.lib -------------------------------------------------------------------------------- /analyzers.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/analyzers.lib -------------------------------------------------------------------------------- /arch/print_arch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/arch/print_arch.cpp -------------------------------------------------------------------------------- /basics.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/basics.lib -------------------------------------------------------------------------------- /compressors.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/compressors.lib -------------------------------------------------------------------------------- /delays.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/delays.lib -------------------------------------------------------------------------------- /demos.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/demos.lib -------------------------------------------------------------------------------- /doc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc.lib -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/docs/about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/docs/about.md -------------------------------------------------------------------------------- /doc/docs/community.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/docs/community.md -------------------------------------------------------------------------------- /doc/docs/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/docs/contributing.md -------------------------------------------------------------------------------- /doc/docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/docs/css/extra.css -------------------------------------------------------------------------------- /doc/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/docs/index.md -------------------------------------------------------------------------------- /doc/docs/organization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/docs/organization.md -------------------------------------------------------------------------------- /doc/docs/standardFunctions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/docs/standardFunctions.md -------------------------------------------------------------------------------- /doc/library.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/library.pdf -------------------------------------------------------------------------------- /doc/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/mkdocs.yml -------------------------------------------------------------------------------- /doc/scripts/faustlib2md.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/scripts/faustlib2md.awk -------------------------------------------------------------------------------- /doc/scripts/makeindex.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/scripts/makeindex.awk -------------------------------------------------------------------------------- /doc/theme/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/theme/base.html -------------------------------------------------------------------------------- /doc/theme/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/theme/css/base.css -------------------------------------------------------------------------------- /doc/theme/img/faustCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/theme/img/faustCode.jpg -------------------------------------------------------------------------------- /doc/theme/img/faustText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/doc/theme/img/faustText.svg -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | faustlibraries.grame.fr -------------------------------------------------------------------------------- /docs/about/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/about/index.html -------------------------------------------------------------------------------- /docs/community/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/community/index.html -------------------------------------------------------------------------------- /docs/contributing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/contributing/index.html -------------------------------------------------------------------------------- /docs/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/css/base.css -------------------------------------------------------------------------------- /docs/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /docs/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/css/font-awesome.min.css -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/img/faustCode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/img/faustCode.jpg -------------------------------------------------------------------------------- /docs/img/faustText.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/img/faustText.svg -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/img/grid.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/js/base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/js/base.js -------------------------------------------------------------------------------- /docs/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/js/jquery-3.6.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/js/jquery-3.6.0.min.js -------------------------------------------------------------------------------- /docs/libs/aanl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/aanl/index.html -------------------------------------------------------------------------------- /docs/libs/analyzers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/analyzers/index.html -------------------------------------------------------------------------------- /docs/libs/basics/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/basics/index.html -------------------------------------------------------------------------------- /docs/libs/compressors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/compressors/index.html -------------------------------------------------------------------------------- /docs/libs/delays/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/delays/index.html -------------------------------------------------------------------------------- /docs/libs/demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/demos/index.html -------------------------------------------------------------------------------- /docs/libs/dx7/dx7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/dx7/dx7/index.html -------------------------------------------------------------------------------- /docs/libs/dx7/env/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/dx7/env/index.html -------------------------------------------------------------------------------- /docs/libs/dx7/lfo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/dx7/lfo/index.html -------------------------------------------------------------------------------- /docs/libs/dx7/operator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/dx7/operator/index.html -------------------------------------------------------------------------------- /docs/libs/dx7/pitchenv/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/dx7/pitchenv/index.html -------------------------------------------------------------------------------- /docs/libs/envelopes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/envelopes/index.html -------------------------------------------------------------------------------- /docs/libs/fds/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/fds/index.html -------------------------------------------------------------------------------- /docs/libs/filters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/filters/index.html -------------------------------------------------------------------------------- /docs/libs/hoa/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/hoa/index.html -------------------------------------------------------------------------------- /docs/libs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/index.html -------------------------------------------------------------------------------- /docs/libs/interpolators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/interpolators/index.html -------------------------------------------------------------------------------- /docs/libs/linearalgebra/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/linearalgebra/index.html -------------------------------------------------------------------------------- /docs/libs/maths/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/maths/index.html -------------------------------------------------------------------------------- /docs/libs/mi/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/mi/index.html -------------------------------------------------------------------------------- /docs/libs/misceffects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/misceffects/index.html -------------------------------------------------------------------------------- /docs/libs/noises/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/noises/index.html -------------------------------------------------------------------------------- /docs/libs/oscillators/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/oscillators/index.html -------------------------------------------------------------------------------- /docs/libs/phaflangers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/phaflangers/index.html -------------------------------------------------------------------------------- /docs/libs/physmodels/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/physmodels/index.html -------------------------------------------------------------------------------- /docs/libs/quantizers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/quantizers/index.html -------------------------------------------------------------------------------- /docs/libs/reducemaps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/reducemaps/index.html -------------------------------------------------------------------------------- /docs/libs/reverbs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/reverbs/index.html -------------------------------------------------------------------------------- /docs/libs/routes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/routes/index.html -------------------------------------------------------------------------------- /docs/libs/signals/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/signals/index.html -------------------------------------------------------------------------------- /docs/libs/soundfiles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/soundfiles/index.html -------------------------------------------------------------------------------- /docs/libs/spats/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/spats/index.html -------------------------------------------------------------------------------- /docs/libs/synths/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/synths/index.html -------------------------------------------------------------------------------- /docs/libs/vaeffects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/vaeffects/index.html -------------------------------------------------------------------------------- /docs/libs/version/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/version/index.html -------------------------------------------------------------------------------- /docs/libs/wdmodels/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/wdmodels/index.html -------------------------------------------------------------------------------- /docs/libs/webaudio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/libs/webaudio/index.html -------------------------------------------------------------------------------- /docs/organization/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/organization/index.html -------------------------------------------------------------------------------- /docs/search/lunr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/search/lunr.js -------------------------------------------------------------------------------- /docs/search/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/search/main.js -------------------------------------------------------------------------------- /docs/search/search_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/search/search_index.json -------------------------------------------------------------------------------- /docs/search/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/search/worker.js -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /docs/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/sitemap.xml.gz -------------------------------------------------------------------------------- /docs/standardFunctions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/docs/standardFunctions/index.html -------------------------------------------------------------------------------- /dx7/dx7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/dx7/dx7.lib -------------------------------------------------------------------------------- /dx7/env.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/dx7/env.lib -------------------------------------------------------------------------------- /dx7/lfo.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/dx7/lfo.lib -------------------------------------------------------------------------------- /dx7/operator.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/dx7/operator.lib -------------------------------------------------------------------------------- /dx7/pitchenv.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/dx7/pitchenv.lib -------------------------------------------------------------------------------- /dx7presets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/dx7presets/README.md -------------------------------------------------------------------------------- /dx7presets/brass.syx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/dx7presets/brass.syx -------------------------------------------------------------------------------- /dx7presets/dx7_brass.syx.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/dx7presets/dx7_brass.syx.lib -------------------------------------------------------------------------------- /dx7presets/makelibs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/dx7presets/makelibs -------------------------------------------------------------------------------- /embedded/platform.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/embedded/platform.lib -------------------------------------------------------------------------------- /envelopes.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/envelopes.lib -------------------------------------------------------------------------------- /fds.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/fds.lib -------------------------------------------------------------------------------- /filters.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/filters.lib -------------------------------------------------------------------------------- /hoa.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/hoa.lib -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/install -------------------------------------------------------------------------------- /instruments.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/instruments.lib -------------------------------------------------------------------------------- /interpolators.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/interpolators.lib -------------------------------------------------------------------------------- /licenses/stk-4.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/licenses/stk-4.3.0.md -------------------------------------------------------------------------------- /linearalgebra.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/linearalgebra.lib -------------------------------------------------------------------------------- /maths.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/maths.lib -------------------------------------------------------------------------------- /maxmsp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/maxmsp.lib -------------------------------------------------------------------------------- /mi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/mi.lib -------------------------------------------------------------------------------- /misceffects.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/misceffects.lib -------------------------------------------------------------------------------- /modalmodels/carillonBell/.gitignore: -------------------------------------------------------------------------------- 1 | carillonBellModel.lib 2 | -------------------------------------------------------------------------------- /modalmodels/carillonBell/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/carillonBell/build -------------------------------------------------------------------------------- /modalmodels/carillonBell/carillonBell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/carillonBell/carillonBell.obj -------------------------------------------------------------------------------- /modalmodels/carillonBell/carillonBell.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/carillonBell/carillonBell.scad -------------------------------------------------------------------------------- /modalmodels/carillonBell/carillonBell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/carillonBell/carillonBell.svg -------------------------------------------------------------------------------- /modalmodels/carillonBell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/carillonBell/description.md -------------------------------------------------------------------------------- /modalmodels/churchBell/.gitignore: -------------------------------------------------------------------------------- 1 | churchBellModel.lib 2 | -------------------------------------------------------------------------------- /modalmodels/churchBell/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/churchBell/build -------------------------------------------------------------------------------- /modalmodels/churchBell/churchBell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/churchBell/churchBell.obj -------------------------------------------------------------------------------- /modalmodels/churchBell/churchBell.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/churchBell/churchBell.scad -------------------------------------------------------------------------------- /modalmodels/churchBell/churchBell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/churchBell/churchBell.svg -------------------------------------------------------------------------------- /modalmodels/churchBell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/churchBell/description.md -------------------------------------------------------------------------------- /modalmodels/englishBell/.gitignore: -------------------------------------------------------------------------------- 1 | englishBellModel.lib 2 | -------------------------------------------------------------------------------- /modalmodels/englishBell/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/englishBell/build -------------------------------------------------------------------------------- /modalmodels/englishBell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/englishBell/description.md -------------------------------------------------------------------------------- /modalmodels/englishBell/english.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/englishBell/english.scad -------------------------------------------------------------------------------- /modalmodels/englishBell/englishBell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/englishBell/englishBell.obj -------------------------------------------------------------------------------- /modalmodels/englishBell/englishBell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/englishBell/englishBell.svg -------------------------------------------------------------------------------- /modalmodels/frenchBell/.gitignore: -------------------------------------------------------------------------------- 1 | frenchBellModel.lib 2 | -------------------------------------------------------------------------------- /modalmodels/frenchBell/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/frenchBell/build -------------------------------------------------------------------------------- /modalmodels/frenchBell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/frenchBell/description.md -------------------------------------------------------------------------------- /modalmodels/frenchBell/frenchBell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/frenchBell/frenchBell.obj -------------------------------------------------------------------------------- /modalmodels/frenchBell/frenchBell.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/frenchBell/frenchBell.scad -------------------------------------------------------------------------------- /modalmodels/frenchBell/frenchBell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/frenchBell/frenchBell.svg -------------------------------------------------------------------------------- /modalmodels/germanBell/.gitignore: -------------------------------------------------------------------------------- 1 | germanBellModel.lib 2 | -------------------------------------------------------------------------------- /modalmodels/germanBell/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/germanBell/build -------------------------------------------------------------------------------- /modalmodels/germanBell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/germanBell/description.md -------------------------------------------------------------------------------- /modalmodels/germanBell/germanBell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/germanBell/germanBell.obj -------------------------------------------------------------------------------- /modalmodels/germanBell/germanBell.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/germanBell/germanBell.scad -------------------------------------------------------------------------------- /modalmodels/germanBell/germanBell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/germanBell/germanBell.svg -------------------------------------------------------------------------------- /modalmodels/marimbaBar/.gitignore: -------------------------------------------------------------------------------- 1 | marimbaBarModel.lib 2 | -------------------------------------------------------------------------------- /modalmodels/marimbaBar/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/marimbaBar/build -------------------------------------------------------------------------------- /modalmodels/marimbaBar/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/marimbaBar/description.md -------------------------------------------------------------------------------- /modalmodels/marimbaBar/marimbaBar.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/marimbaBar/marimbaBar.obj -------------------------------------------------------------------------------- /modalmodels/marimbaBar/marimbaBar.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/marimbaBar/marimbaBar.scad -------------------------------------------------------------------------------- /modalmodels/marimbaBar/marimbaBar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/marimbaBar/marimbaBar.svg -------------------------------------------------------------------------------- /modalmodels/russianBell/.gitignore: -------------------------------------------------------------------------------- 1 | russianBellModel.lib 2 | -------------------------------------------------------------------------------- /modalmodels/russianBell/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/russianBell/build -------------------------------------------------------------------------------- /modalmodels/russianBell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/russianBell/description.md -------------------------------------------------------------------------------- /modalmodels/russianBell/russianBell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/russianBell/russianBell.obj -------------------------------------------------------------------------------- /modalmodels/russianBell/russianBell.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/russianBell/russianBell.scad -------------------------------------------------------------------------------- /modalmodels/russianBell/russianBell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/russianBell/russianBell.svg -------------------------------------------------------------------------------- /modalmodels/standardBell/.gitignore: -------------------------------------------------------------------------------- 1 | standardBellModel.lib 2 | -------------------------------------------------------------------------------- /modalmodels/standardBell/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/standardBell/build -------------------------------------------------------------------------------- /modalmodels/standardBell/description.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/standardBell/description.md -------------------------------------------------------------------------------- /modalmodels/standardBell/standardBell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/standardBell/standardBell.obj -------------------------------------------------------------------------------- /modalmodels/standardBell/standardBell.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/standardBell/standardBell.scad -------------------------------------------------------------------------------- /modalmodels/standardBell/standardBell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/modalmodels/standardBell/standardBell.svg -------------------------------------------------------------------------------- /noises.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/noises.lib -------------------------------------------------------------------------------- /old/effect.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/old/effect.lib -------------------------------------------------------------------------------- /old/filter.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/old/filter.lib -------------------------------------------------------------------------------- /old/math.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/old/math.lib -------------------------------------------------------------------------------- /old/music.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/old/music.lib -------------------------------------------------------------------------------- /old/oscillator.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/old/oscillator.lib -------------------------------------------------------------------------------- /oscillators.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/oscillators.lib -------------------------------------------------------------------------------- /phaflangers.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/phaflangers.lib -------------------------------------------------------------------------------- /physmodels.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/physmodels.lib -------------------------------------------------------------------------------- /platform.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/platform.lib -------------------------------------------------------------------------------- /quantizers.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/quantizers.lib -------------------------------------------------------------------------------- /reducemaps.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/reducemaps.lib -------------------------------------------------------------------------------- /resources/.gitignore: -------------------------------------------------------------------------------- 1 | *.dot 2 | *.pdf 3 | -------------------------------------------------------------------------------- /resources/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/resources/Makefile -------------------------------------------------------------------------------- /resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/resources/README.md -------------------------------------------------------------------------------- /reverbs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/reverbs.lib -------------------------------------------------------------------------------- /routes.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/routes.lib -------------------------------------------------------------------------------- /scripts/extract_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/scripts/extract_tests.sh -------------------------------------------------------------------------------- /scripts/floatdiff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/scripts/floatdiff.py -------------------------------------------------------------------------------- /sf.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/sf.lib -------------------------------------------------------------------------------- /signals.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/signals.lib -------------------------------------------------------------------------------- /soundfiles.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/soundfiles.lib -------------------------------------------------------------------------------- /spats.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/spats.lib -------------------------------------------------------------------------------- /stdfaust.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/stdfaust.lib -------------------------------------------------------------------------------- /synths.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/synths.lib -------------------------------------------------------------------------------- /tests/aanl_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/aanl_tests.dsp -------------------------------------------------------------------------------- /tests/analyzers_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/analyzers_tests.dsp -------------------------------------------------------------------------------- /tests/assets/silence.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/assets/silence.wav -------------------------------------------------------------------------------- /tests/basics_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/basics_tests.dsp -------------------------------------------------------------------------------- /tests/compressors_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/compressors_tests.dsp -------------------------------------------------------------------------------- /tests/delays_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/delays_tests.dsp -------------------------------------------------------------------------------- /tests/demos_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/demos_tests.dsp -------------------------------------------------------------------------------- /tests/dx7_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/dx7_tests.dsp -------------------------------------------------------------------------------- /tests/envelopes_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/envelopes_tests.dsp -------------------------------------------------------------------------------- /tests/fds_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/fds_tests.dsp -------------------------------------------------------------------------------- /tests/filters_analog_sections_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_analog_sections_tests.dsp -------------------------------------------------------------------------------- /tests/filters_bandpass_bandstop_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_bandpass_bandstop_tests.dsp -------------------------------------------------------------------------------- /tests/filters_basic_comb_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_basic_comb_tests.dsp -------------------------------------------------------------------------------- /tests/filters_butterworth_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_butterworth_tests.dsp -------------------------------------------------------------------------------- /tests/filters_delay_equalizing_allpass_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_delay_equalizing_allpass_tests.dsp -------------------------------------------------------------------------------- /tests/filters_direct_ladder_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_direct_ladder_tests.dsp -------------------------------------------------------------------------------- /tests/filters_elliptic_bandpass_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_elliptic_bandpass_tests.dsp -------------------------------------------------------------------------------- /tests/filters_elliptic_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_elliptic_tests.dsp -------------------------------------------------------------------------------- /tests/filters_filterbank_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_filterbank_tests.dsp -------------------------------------------------------------------------------- /tests/filters_ladder_allpass_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_ladder_allpass_tests.dsp -------------------------------------------------------------------------------- /tests/filters_linkwitz_riley_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_linkwitz_riley_tests.dsp -------------------------------------------------------------------------------- /tests/filters_mth_octave_filterbank_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_mth_octave_filterbank_tests.dsp -------------------------------------------------------------------------------- /tests/filters_parametric_eq_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_parametric_eq_tests.dsp -------------------------------------------------------------------------------- /tests/filters_pospass_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_pospass_tests.dsp -------------------------------------------------------------------------------- /tests/filters_resonator_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_resonator_tests.dsp -------------------------------------------------------------------------------- /tests/filters_state_variable_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_state_variable_tests.dsp -------------------------------------------------------------------------------- /tests/filters_useful_special_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/filters_useful_special_tests.dsp -------------------------------------------------------------------------------- /tests/hoa_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/hoa_tests.dsp -------------------------------------------------------------------------------- /tests/interpolators_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/interpolators_tests.dsp -------------------------------------------------------------------------------- /tests/linearalgebra_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/linearalgebra_tests.dsp -------------------------------------------------------------------------------- /tests/maths_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/maths_tests.dsp -------------------------------------------------------------------------------- /tests/mi_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/mi_tests.dsp -------------------------------------------------------------------------------- /tests/misceffects_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/misceffects_tests.dsp -------------------------------------------------------------------------------- /tests/noises_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/noises_tests.dsp -------------------------------------------------------------------------------- /tests/oscillators_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/oscillators_tests.dsp -------------------------------------------------------------------------------- /tests/phaflangers_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/phaflangers_tests.dsp -------------------------------------------------------------------------------- /tests/physmodels_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/physmodels_tests.dsp -------------------------------------------------------------------------------- /tests/quantizers_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/quantizers_tests.dsp -------------------------------------------------------------------------------- /tests/reducemaps_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/reducemaps_tests.dsp -------------------------------------------------------------------------------- /tests/reverbs_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/reverbs_tests.dsp -------------------------------------------------------------------------------- /tests/routes_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/routes_tests.dsp -------------------------------------------------------------------------------- /tests/signals_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/signals_tests.dsp -------------------------------------------------------------------------------- /tests/soundfiles_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/soundfiles_tests.dsp -------------------------------------------------------------------------------- /tests/spats_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/spats_tests.dsp -------------------------------------------------------------------------------- /tests/synths_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/synths_tests.dsp -------------------------------------------------------------------------------- /tests/vaeffects_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/vaeffects_tests.dsp -------------------------------------------------------------------------------- /tests/wdmodels_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/wdmodels_tests.dsp -------------------------------------------------------------------------------- /tests/webaudio_tests.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tests/webaudio_tests.dsp -------------------------------------------------------------------------------- /tonestacks.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tonestacks.lib -------------------------------------------------------------------------------- /tubes.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/tubes.lib -------------------------------------------------------------------------------- /unsupported/dx7.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/unsupported/dx7.lib -------------------------------------------------------------------------------- /vaeffects.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/vaeffects.lib -------------------------------------------------------------------------------- /version.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/version.lib -------------------------------------------------------------------------------- /wdmodels.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/wdmodels.lib -------------------------------------------------------------------------------- /webaudio.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/grame-cncm/faustlibraries/HEAD/webaudio.lib --------------------------------------------------------------------------------