├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── clean.sh ├── install.sh ├── plugin.json ├── res ├── GenEcho.svg ├── Grandy.svg └── Stitch.svg └── src ├── Genecho.cpp ├── Grandy.cpp ├── GrandyOscillator.hpp ├── Stitcher.cpp ├── StochStepper.cpp ├── plugin.cpp ├── plugin.hpp ├── sfwrite.wav ├── wavetable.cpp └── wavetable.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- 1 | RACK_DIR=./dep/Rack-SDK make clean -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- 1 | RACK_DIR=./dep/Rack-SDK make install -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/plugin.json -------------------------------------------------------------------------------- /res/GenEcho.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/res/GenEcho.svg -------------------------------------------------------------------------------- /res/Grandy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/res/Grandy.svg -------------------------------------------------------------------------------- /res/Stitch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/res/Stitch.svg -------------------------------------------------------------------------------- /src/Genecho.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/Genecho.cpp -------------------------------------------------------------------------------- /src/Grandy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/Grandy.cpp -------------------------------------------------------------------------------- /src/GrandyOscillator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/GrandyOscillator.hpp -------------------------------------------------------------------------------- /src/Stitcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/Stitcher.cpp -------------------------------------------------------------------------------- /src/StochStepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/StochStepper.cpp -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/plugin.hpp -------------------------------------------------------------------------------- /src/sfwrite.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/sfwrite.wav -------------------------------------------------------------------------------- /src/wavetable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/wavetable.cpp -------------------------------------------------------------------------------- /src/wavetable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smbddha/sb-StochKit/HEAD/src/wavetable.hpp --------------------------------------------------------------------------------