├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── plugin.json ├── res ├── ChordCV.svg ├── DiatonicCV.svg ├── RandomNoteCV.svg ├── ScaleCV.svg └── fonts │ └── PixelOperator.ttf └── src ├── ChordCV.cpp ├── DiatonicCV.cpp ├── RandomNoteCV.cpp ├── ScaleCV.cpp ├── musiclib.cpp ├── musiclib.hpp ├── plugin.cpp └── plugin.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/README.md -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/plugin.json -------------------------------------------------------------------------------- /res/ChordCV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/res/ChordCV.svg -------------------------------------------------------------------------------- /res/DiatonicCV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/res/DiatonicCV.svg -------------------------------------------------------------------------------- /res/RandomNoteCV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/res/RandomNoteCV.svg -------------------------------------------------------------------------------- /res/ScaleCV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/res/ScaleCV.svg -------------------------------------------------------------------------------- /res/fonts/PixelOperator.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/res/fonts/PixelOperator.ttf -------------------------------------------------------------------------------- /src/ChordCV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/src/ChordCV.cpp -------------------------------------------------------------------------------- /src/DiatonicCV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/src/DiatonicCV.cpp -------------------------------------------------------------------------------- /src/RandomNoteCV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/src/RandomNoteCV.cpp -------------------------------------------------------------------------------- /src/ScaleCV.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/src/ScaleCV.cpp -------------------------------------------------------------------------------- /src/musiclib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/src/musiclib.cpp -------------------------------------------------------------------------------- /src/musiclib.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/src/musiclib.hpp -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaronstatic/AaronStatic_modules/HEAD/src/plugin.hpp --------------------------------------------------------------------------------