├── .gitignore ├── README.md ├── icon.png ├── package-info.json ├── patchers ├── controls_view.maxpat ├── fc.allpass.gendsp ├── fc.bell.gendsp ├── fc.comb.gendsp ├── fc.diode.gendsp ├── fc.hishelf.gendsp ├── fc.k35hp.gendsp ├── fc.k35lp.gendsp ├── fc.ladder.gendsp ├── fc.loshelf.gendsp ├── fc.onepole.gendsp ├── fc.reson.gendsp ├── fc.svf-as.gendsp ├── fc.svf-eg.gendsp ├── fc.zdf-onepole.gendsp ├── fc.zdf-svf.gendsp └── filter-collection.maxpat └── src └── filters.genexpr /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/icon.png -------------------------------------------------------------------------------- /package-info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/package-info.json -------------------------------------------------------------------------------- /patchers/controls_view.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/controls_view.maxpat -------------------------------------------------------------------------------- /patchers/fc.allpass.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.allpass.gendsp -------------------------------------------------------------------------------- /patchers/fc.bell.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.bell.gendsp -------------------------------------------------------------------------------- /patchers/fc.comb.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.comb.gendsp -------------------------------------------------------------------------------- /patchers/fc.diode.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.diode.gendsp -------------------------------------------------------------------------------- /patchers/fc.hishelf.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.hishelf.gendsp -------------------------------------------------------------------------------- /patchers/fc.k35hp.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.k35hp.gendsp -------------------------------------------------------------------------------- /patchers/fc.k35lp.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.k35lp.gendsp -------------------------------------------------------------------------------- /patchers/fc.ladder.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.ladder.gendsp -------------------------------------------------------------------------------- /patchers/fc.loshelf.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.loshelf.gendsp -------------------------------------------------------------------------------- /patchers/fc.onepole.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.onepole.gendsp -------------------------------------------------------------------------------- /patchers/fc.reson.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.reson.gendsp -------------------------------------------------------------------------------- /patchers/fc.svf-as.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.svf-as.gendsp -------------------------------------------------------------------------------- /patchers/fc.svf-eg.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.svf-eg.gendsp -------------------------------------------------------------------------------- /patchers/fc.zdf-onepole.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.zdf-onepole.gendsp -------------------------------------------------------------------------------- /patchers/fc.zdf-svf.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/fc.zdf-svf.gendsp -------------------------------------------------------------------------------- /patchers/filter-collection.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/patchers/filter-collection.maxpat -------------------------------------------------------------------------------- /src/filters.genexpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ess-m/gen-filters/HEAD/src/filters.genexpr --------------------------------------------------------------------------------