├── .gitignore ├── LICENSE ├── README.md ├── device ├── README.md ├── device.routing.list.maxpat ├── device.routing.maxpat ├── ravetable.amxd ├── ravetable.gendsp └── ravetable.js ├── figures └── ravetable_small.png └── manual.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/README.md -------------------------------------------------------------------------------- /device/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/device/README.md -------------------------------------------------------------------------------- /device/device.routing.list.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/device/device.routing.list.maxpat -------------------------------------------------------------------------------- /device/device.routing.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/device/device.routing.maxpat -------------------------------------------------------------------------------- /device/ravetable.amxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/device/ravetable.amxd -------------------------------------------------------------------------------- /device/ravetable.gendsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/device/ravetable.gendsp -------------------------------------------------------------------------------- /device/ravetable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/device/ravetable.js -------------------------------------------------------------------------------- /figures/ravetable_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/figures/ravetable_small.png -------------------------------------------------------------------------------- /manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acids-ircam/ravetable/HEAD/manual.pdf --------------------------------------------------------------------------------