├── .gitignore ├── .gitmodules ├── BLow.ttl ├── LICENSE ├── README.md ├── doc └── screenshot.png ├── inc ├── breviceps.wav ├── dleigh.wav ├── flash-shumway.wav ├── inspectorj.wav ├── junkfood2121.flac ├── junkfood2121.wav ├── katavlogsyt.wav ├── kuchtaa.wav ├── peridactyloptrix.wav ├── shaundoogan.wav ├── surface.png ├── surface.svg ├── unfa.wav └── yyzjj.wav ├── makefile ├── manifest.ttl └── src ├── BLow.cpp ├── BLow_GUI.cpp ├── Definitions.hpp ├── Ports.hpp ├── StaticArrayList.hpp └── Urids.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | /BLow.lv2/** 2 | /.tags 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/.gitmodules -------------------------------------------------------------------------------- /BLow.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/BLow.ttl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/README.md -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /inc/breviceps.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/breviceps.wav -------------------------------------------------------------------------------- /inc/dleigh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/dleigh.wav -------------------------------------------------------------------------------- /inc/flash-shumway.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/flash-shumway.wav -------------------------------------------------------------------------------- /inc/inspectorj.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/inspectorj.wav -------------------------------------------------------------------------------- /inc/junkfood2121.flac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/junkfood2121.flac -------------------------------------------------------------------------------- /inc/junkfood2121.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/junkfood2121.wav -------------------------------------------------------------------------------- /inc/katavlogsyt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/katavlogsyt.wav -------------------------------------------------------------------------------- /inc/kuchtaa.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/kuchtaa.wav -------------------------------------------------------------------------------- /inc/peridactyloptrix.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/peridactyloptrix.wav -------------------------------------------------------------------------------- /inc/shaundoogan.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/shaundoogan.wav -------------------------------------------------------------------------------- /inc/surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/surface.png -------------------------------------------------------------------------------- /inc/surface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/surface.svg -------------------------------------------------------------------------------- /inc/unfa.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/unfa.wav -------------------------------------------------------------------------------- /inc/yyzjj.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/inc/yyzjj.wav -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/makefile -------------------------------------------------------------------------------- /manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/manifest.ttl -------------------------------------------------------------------------------- /src/BLow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/src/BLow.cpp -------------------------------------------------------------------------------- /src/BLow_GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/src/BLow_GUI.cpp -------------------------------------------------------------------------------- /src/Definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/src/Definitions.hpp -------------------------------------------------------------------------------- /src/Ports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/src/Ports.hpp -------------------------------------------------------------------------------- /src/StaticArrayList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/src/StaticArrayList.hpp -------------------------------------------------------------------------------- /src/Urids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BLow/HEAD/src/Urids.hpp --------------------------------------------------------------------------------