├── CMakeLists.txt ├── Extra └── xenosInterface.png ├── LICENSE ├── README.md ├── Resources └── background.png ├── Source ├── ParamListener.h ├── ParamMenu.h ├── ParamSlider.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── Quantizer.cpp ├── Quantizer.h ├── RandomSource.cpp ├── RandomSource.h ├── RandomWalk.cpp ├── RandomWalk.h ├── Scale.cpp ├── Scale.h ├── Utility.cpp ├── Utility.h └── Xenos.h └── Xenos.jucer /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Extra/xenosInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Extra/xenosInterface.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/README.md -------------------------------------------------------------------------------- /Resources/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Resources/background.png -------------------------------------------------------------------------------- /Source/ParamListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/ParamListener.h -------------------------------------------------------------------------------- /Source/ParamMenu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/ParamMenu.h -------------------------------------------------------------------------------- /Source/ParamSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/ParamSlider.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Source/Quantizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/Quantizer.cpp -------------------------------------------------------------------------------- /Source/Quantizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/Quantizer.h -------------------------------------------------------------------------------- /Source/RandomSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/RandomSource.cpp -------------------------------------------------------------------------------- /Source/RandomSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/RandomSource.h -------------------------------------------------------------------------------- /Source/RandomWalk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/RandomWalk.cpp -------------------------------------------------------------------------------- /Source/RandomWalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/RandomWalk.h -------------------------------------------------------------------------------- /Source/Scale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/Scale.cpp -------------------------------------------------------------------------------- /Source/Scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/Scale.h -------------------------------------------------------------------------------- /Source/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/Utility.cpp -------------------------------------------------------------------------------- /Source/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/Utility.h -------------------------------------------------------------------------------- /Source/Xenos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Source/Xenos.h -------------------------------------------------------------------------------- /Xenos.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/raphaelradna/xenos/HEAD/Xenos.jucer --------------------------------------------------------------------------------