├── .gitignore ├── LICENSE-dist.txt ├── LICENSE.txt ├── Makefile ├── README.md ├── gen_ui.sh ├── res ├── ADSR-F1.svg ├── Binary-G1.svg ├── Blank03.svg ├── Blank06.svg ├── Blank09.svg ├── Blank12.svg ├── Chord-G1.svg ├── Fade-G1.svg ├── Fade-G2.svg ├── Keys-G1.svg ├── MIDI-C1.svg ├── MIDI-G1.svg ├── Octave-G1.svg ├── Scope-G1.svg ├── Seq-G1.svg ├── Seq-G2.svg ├── VCA-F1.svg ├── VCF-F1.svg ├── VCO-F1.svg ├── VCO-F2.svg ├── VU-G1.svg ├── components │ ├── KnobFreeHuge.svg │ ├── KnobFreeLarge.svg │ ├── KnobFreeMedium.svg │ ├── KnobFreeSmall.svg │ ├── KnobFreeTiny.svg │ ├── KnobSnapHuge.svg │ ├── KnobSnapLarge.svg │ ├── KnobSnapMedium.svg │ ├── KnobSnapSmall.svg │ ├── KnobSnapTiny.svg │ ├── PortInMedium.svg │ ├── PortInSmall.svg │ ├── PortOutMedium.svg │ └── PortOutSmall.svg └── fonts │ ├── Sudo-LICENSE.txt │ ├── Sudo.ttf │ └── lcd-solid │ ├── LCD_Solid.ttf │ └── ReadMe.txt ├── src ├── ADSR.cpp ├── Binary-G1.cpp ├── Blank03.cpp ├── Blank06.cpp ├── Blank09.cpp ├── Blank12.cpp ├── Chord-G1.cpp ├── Fade-G1.cpp ├── Fade-G2.cpp ├── Gratrix.cpp ├── Gratrix.hpp ├── Keys-G1.cpp ├── MIDI-C1.cpp ├── MIDI-G1.cpp ├── Octave-G1.cpp ├── Scope-G1.cpp ├── Seq-G1.cpp ├── Seq-G2.cpp ├── VCA.cpp ├── VCF.cpp ├── VCO.cpp └── VU-G1.cpp └── www ├── index.html ├── res ├── Binary-G1.png ├── Blank03.png ├── Blank06.png ├── Blank09.png ├── Blank12.png ├── Chord-G1.png ├── Env-F1.png ├── Fade-G1.png ├── Fade-G2.png ├── Keys-G1.png ├── MIDI-C1.png ├── MIDI-G1.png ├── Mux.png ├── Octave-G1.png ├── Scope-G1.png ├── Seq-G1.png ├── Seq-G2.png ├── VCA-F1.png ├── VCF-F1.png ├── VCO-F1.png ├── VCO-F2.png └── VU-G1.png └── shot.png /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /plugin.dll 3 | /www/downloads 4 | -------------------------------------------------------------------------------- /LICENSE-dist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/LICENSE-dist.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/README.md -------------------------------------------------------------------------------- /gen_ui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/gen_ui.sh -------------------------------------------------------------------------------- /res/ADSR-F1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/ADSR-F1.svg -------------------------------------------------------------------------------- /res/Binary-G1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Binary-G1.svg -------------------------------------------------------------------------------- /res/Blank03.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Blank03.svg -------------------------------------------------------------------------------- /res/Blank06.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Blank06.svg -------------------------------------------------------------------------------- /res/Blank09.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Blank09.svg -------------------------------------------------------------------------------- /res/Blank12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Blank12.svg -------------------------------------------------------------------------------- /res/Chord-G1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Chord-G1.svg -------------------------------------------------------------------------------- /res/Fade-G1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Fade-G1.svg -------------------------------------------------------------------------------- /res/Fade-G2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Fade-G2.svg -------------------------------------------------------------------------------- /res/Keys-G1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Keys-G1.svg -------------------------------------------------------------------------------- /res/MIDI-C1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/MIDI-C1.svg -------------------------------------------------------------------------------- /res/MIDI-G1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/MIDI-G1.svg -------------------------------------------------------------------------------- /res/Octave-G1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Octave-G1.svg -------------------------------------------------------------------------------- /res/Scope-G1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Scope-G1.svg -------------------------------------------------------------------------------- /res/Seq-G1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Seq-G1.svg -------------------------------------------------------------------------------- /res/Seq-G2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/Seq-G2.svg -------------------------------------------------------------------------------- /res/VCA-F1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/VCA-F1.svg -------------------------------------------------------------------------------- /res/VCF-F1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/VCF-F1.svg -------------------------------------------------------------------------------- /res/VCO-F1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/VCO-F1.svg -------------------------------------------------------------------------------- /res/VCO-F2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/VCO-F2.svg -------------------------------------------------------------------------------- /res/VU-G1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/VU-G1.svg -------------------------------------------------------------------------------- /res/components/KnobFreeHuge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobFreeHuge.svg -------------------------------------------------------------------------------- /res/components/KnobFreeLarge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobFreeLarge.svg -------------------------------------------------------------------------------- /res/components/KnobFreeMedium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobFreeMedium.svg -------------------------------------------------------------------------------- /res/components/KnobFreeSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobFreeSmall.svg -------------------------------------------------------------------------------- /res/components/KnobFreeTiny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobFreeTiny.svg -------------------------------------------------------------------------------- /res/components/KnobSnapHuge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobSnapHuge.svg -------------------------------------------------------------------------------- /res/components/KnobSnapLarge.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobSnapLarge.svg -------------------------------------------------------------------------------- /res/components/KnobSnapMedium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobSnapMedium.svg -------------------------------------------------------------------------------- /res/components/KnobSnapSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobSnapSmall.svg -------------------------------------------------------------------------------- /res/components/KnobSnapTiny.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/KnobSnapTiny.svg -------------------------------------------------------------------------------- /res/components/PortInMedium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/PortInMedium.svg -------------------------------------------------------------------------------- /res/components/PortInSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/PortInSmall.svg -------------------------------------------------------------------------------- /res/components/PortOutMedium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/PortOutMedium.svg -------------------------------------------------------------------------------- /res/components/PortOutSmall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/components/PortOutSmall.svg -------------------------------------------------------------------------------- /res/fonts/Sudo-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/fonts/Sudo-LICENSE.txt -------------------------------------------------------------------------------- /res/fonts/Sudo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/fonts/Sudo.ttf -------------------------------------------------------------------------------- /res/fonts/lcd-solid/LCD_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/fonts/lcd-solid/LCD_Solid.ttf -------------------------------------------------------------------------------- /res/fonts/lcd-solid/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/res/fonts/lcd-solid/ReadMe.txt -------------------------------------------------------------------------------- /src/ADSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/ADSR.cpp -------------------------------------------------------------------------------- /src/Binary-G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Binary-G1.cpp -------------------------------------------------------------------------------- /src/Blank03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Blank03.cpp -------------------------------------------------------------------------------- /src/Blank06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Blank06.cpp -------------------------------------------------------------------------------- /src/Blank09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Blank09.cpp -------------------------------------------------------------------------------- /src/Blank12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Blank12.cpp -------------------------------------------------------------------------------- /src/Chord-G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Chord-G1.cpp -------------------------------------------------------------------------------- /src/Fade-G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Fade-G1.cpp -------------------------------------------------------------------------------- /src/Fade-G2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Fade-G2.cpp -------------------------------------------------------------------------------- /src/Gratrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Gratrix.cpp -------------------------------------------------------------------------------- /src/Gratrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Gratrix.hpp -------------------------------------------------------------------------------- /src/Keys-G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Keys-G1.cpp -------------------------------------------------------------------------------- /src/MIDI-C1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/MIDI-C1.cpp -------------------------------------------------------------------------------- /src/MIDI-G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/MIDI-G1.cpp -------------------------------------------------------------------------------- /src/Octave-G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Octave-G1.cpp -------------------------------------------------------------------------------- /src/Scope-G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Scope-G1.cpp -------------------------------------------------------------------------------- /src/Seq-G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Seq-G1.cpp -------------------------------------------------------------------------------- /src/Seq-G2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/Seq-G2.cpp -------------------------------------------------------------------------------- /src/VCA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/VCA.cpp -------------------------------------------------------------------------------- /src/VCF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/VCF.cpp -------------------------------------------------------------------------------- /src/VCO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/VCO.cpp -------------------------------------------------------------------------------- /src/VU-G1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/src/VU-G1.cpp -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/index.html -------------------------------------------------------------------------------- /www/res/Binary-G1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Binary-G1.png -------------------------------------------------------------------------------- /www/res/Blank03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Blank03.png -------------------------------------------------------------------------------- /www/res/Blank06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Blank06.png -------------------------------------------------------------------------------- /www/res/Blank09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Blank09.png -------------------------------------------------------------------------------- /www/res/Blank12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Blank12.png -------------------------------------------------------------------------------- /www/res/Chord-G1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Chord-G1.png -------------------------------------------------------------------------------- /www/res/Env-F1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Env-F1.png -------------------------------------------------------------------------------- /www/res/Fade-G1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Fade-G1.png -------------------------------------------------------------------------------- /www/res/Fade-G2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Fade-G2.png -------------------------------------------------------------------------------- /www/res/Keys-G1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Keys-G1.png -------------------------------------------------------------------------------- /www/res/MIDI-C1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/MIDI-C1.png -------------------------------------------------------------------------------- /www/res/MIDI-G1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/MIDI-G1.png -------------------------------------------------------------------------------- /www/res/Mux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Mux.png -------------------------------------------------------------------------------- /www/res/Octave-G1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Octave-G1.png -------------------------------------------------------------------------------- /www/res/Scope-G1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Scope-G1.png -------------------------------------------------------------------------------- /www/res/Seq-G1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Seq-G1.png -------------------------------------------------------------------------------- /www/res/Seq-G2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/Seq-G2.png -------------------------------------------------------------------------------- /www/res/VCA-F1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/VCA-F1.png -------------------------------------------------------------------------------- /www/res/VCF-F1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/VCF-F1.png -------------------------------------------------------------------------------- /www/res/VCO-F1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/VCO-F1.png -------------------------------------------------------------------------------- /www/res/VCO-F2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/VCO-F2.png -------------------------------------------------------------------------------- /www/res/VU-G1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/res/VU-G1.png -------------------------------------------------------------------------------- /www/shot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gratrix/vcv-gratrix/HEAD/www/shot.png --------------------------------------------------------------------------------