├── .clangd ├── .gitignore ├── .gitmodules ├── BChoppr.ttl ├── BChoppr_Basic_tremolo.ttl ├── BChoppr_Faster_louder_chopper.ttl ├── BChoppr_Jittery_Jim.ttl ├── BChoppr_Panning_tremolo.ttl ├── BChoppr_Raving_loony.ttl ├── BChoppr_Stall_the_engine.ttl ├── BChoppr_Waltz_through_Vienna.ttl ├── LICENSE ├── README.md ├── doc └── screenshot.png ├── makefile ├── manifest.ttl ├── src ├── BChoppr.cpp ├── BChoppr.hpp ├── BChoppr_Dictionary.data ├── BChoppr_GUI.cpp ├── BChoppr_GUI.hpp ├── Limit.hpp ├── Marker.hpp ├── Message.cpp ├── Message.hpp ├── Monitor.hpp ├── Ports.hpp ├── SharedData.hpp ├── SwingHSlider.hpp ├── Urids.hpp └── definitions.hpp ├── surface.png └── surface.svg /.clangd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/.clangd -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/.gitmodules -------------------------------------------------------------------------------- /BChoppr.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/BChoppr.ttl -------------------------------------------------------------------------------- /BChoppr_Basic_tremolo.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/BChoppr_Basic_tremolo.ttl -------------------------------------------------------------------------------- /BChoppr_Faster_louder_chopper.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/BChoppr_Faster_louder_chopper.ttl -------------------------------------------------------------------------------- /BChoppr_Jittery_Jim.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/BChoppr_Jittery_Jim.ttl -------------------------------------------------------------------------------- /BChoppr_Panning_tremolo.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/BChoppr_Panning_tremolo.ttl -------------------------------------------------------------------------------- /BChoppr_Raving_loony.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/BChoppr_Raving_loony.ttl -------------------------------------------------------------------------------- /BChoppr_Stall_the_engine.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/BChoppr_Stall_the_engine.ttl -------------------------------------------------------------------------------- /BChoppr_Waltz_through_Vienna.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/BChoppr_Waltz_through_Vienna.ttl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/README.md -------------------------------------------------------------------------------- /doc/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/doc/screenshot.png -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/makefile -------------------------------------------------------------------------------- /manifest.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/manifest.ttl -------------------------------------------------------------------------------- /src/BChoppr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/BChoppr.cpp -------------------------------------------------------------------------------- /src/BChoppr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/BChoppr.hpp -------------------------------------------------------------------------------- /src/BChoppr_Dictionary.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/BChoppr_Dictionary.data -------------------------------------------------------------------------------- /src/BChoppr_GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/BChoppr_GUI.cpp -------------------------------------------------------------------------------- /src/BChoppr_GUI.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/BChoppr_GUI.hpp -------------------------------------------------------------------------------- /src/Limit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/Limit.hpp -------------------------------------------------------------------------------- /src/Marker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/Marker.hpp -------------------------------------------------------------------------------- /src/Message.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/Message.cpp -------------------------------------------------------------------------------- /src/Message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/Message.hpp -------------------------------------------------------------------------------- /src/Monitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/Monitor.hpp -------------------------------------------------------------------------------- /src/Ports.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/Ports.hpp -------------------------------------------------------------------------------- /src/SharedData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/SharedData.hpp -------------------------------------------------------------------------------- /src/SwingHSlider.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/SwingHSlider.hpp -------------------------------------------------------------------------------- /src/Urids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/Urids.hpp -------------------------------------------------------------------------------- /src/definitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/src/definitions.hpp -------------------------------------------------------------------------------- /surface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/surface.png -------------------------------------------------------------------------------- /surface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjaehn/BChoppr/HEAD/surface.svg --------------------------------------------------------------------------------