├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── TODO ├── doc ├── PrismUM.docx ├── PrismUM.pdf ├── all.jpg ├── prism.jpg ├── references │ ├── AM_1971_02_12_ed.mp3 │ ├── Babylonian-Notatin-and-the-Hurrian-Melodic-Texts_Music-and-Letters-1994-WEST-161-79.pdf │ ├── Crickmore-Iconea20081.pdf │ ├── JCS64_Crickmore.pdf │ ├── gurney.pdf │ ├── gurney2.pdf │ ├── kilmer.pdf │ ├── srutis.pdf │ └── wulstan.pdf └── spectrum.jpg ├── helper.py ├── plugin.json ├── res ├── ComponentLibrary │ ├── PrismButton_0.svg │ ├── PrismButton_1.svg │ ├── PrismFloatReadout.svg │ ├── PrismIndicator.svg │ ├── PrismIntegerReadout.svg │ ├── PrismKnob.svg │ ├── PrismLargeButton_0.svg │ ├── PrismLargeButton_1.svg │ ├── PrismMonoIn.svg │ ├── PrismMonoOut.svg │ ├── PrismPolyIn.svg │ ├── PrismPolyOut.svg │ ├── PrismSSwitch_0.svg │ ├── PrismSSwitch_1.svg │ ├── PrismSSwitch_2.svg │ ├── PrismSlider.svg │ ├── PrismSliderHandle.svg │ ├── PrismSliderNop.svg │ ├── PrismTrimpot.svg │ ├── prism_Jack.svg │ ├── prism_Knob_L.svg │ ├── prism_Knob_S.svg │ ├── prism_Switch2_1.svg │ ├── prism_Switch3_1.svg │ ├── prism_Switch3_2-08.svg │ ├── prism_Switch3_2-11.svg │ ├── prism_Switch3_3.svg │ ├── prism_button_0.svg │ ├── prism_button_1.svg │ ├── prism_fader.svg │ └── prism_triangle.svg ├── OFL.txt ├── README.txt ├── RainbowScaleExpander.svg ├── RobotoCondensed-Regular.ttf ├── mean.scl ├── pi_over_e.vcvm └── prism_Rainbow.svg ├── src ├── Audio.cpp ├── Common.hpp ├── Constants.cpp ├── Controller.cpp ├── Envelope.cpp ├── Filter.cpp ├── Inputs.cpp ├── LEDRing.cpp ├── LPF.cpp ├── Levels.cpp ├── Q.cpp ├── Rainbow.cpp ├── Rainbow.hpp ├── RainbowExpander.cpp ├── Rotation.cpp ├── Tuning.cpp ├── dsp │ ├── Bogaudio-LICENSE.txt │ └── noise.hpp ├── plugin.cpp ├── plugin.hpp └── scales │ ├── BP.cpp │ ├── Buchla296.cpp │ ├── ET_Chromatic.cpp │ ├── ET_Intervals.cpp │ ├── ET_Major.cpp │ ├── ET_Minor.cpp │ ├── ET_Triad.cpp │ ├── ET_Wholestep.cpp │ ├── Gamelan.cpp │ ├── Indian_Penta.cpp │ ├── Indian_Shrutis.cpp │ ├── JI_Intervals.cpp │ ├── JI_Triad.cpp │ ├── JI_Wholestep.cpp │ ├── Mesopotamian.cpp │ ├── Scales.cpp │ ├── Scales.hpp │ ├── Seventeen.cpp │ ├── UserScale.cpp │ ├── Video_notused.cpp │ ├── WC_Alpha1.cpp │ ├── WC_Alpha2.cpp │ ├── WC_Gamma.cpp │ └── WC_Gamma_notused.cpp └── ui └── RainbowExpander_src.svg /.gitignore: -------------------------------------------------------------------------------- 1 | plugin.dll 2 | build 3 | .vscode 4 | dist 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/TODO -------------------------------------------------------------------------------- /doc/PrismUM.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/PrismUM.docx -------------------------------------------------------------------------------- /doc/PrismUM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/PrismUM.pdf -------------------------------------------------------------------------------- /doc/all.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/all.jpg -------------------------------------------------------------------------------- /doc/prism.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/prism.jpg -------------------------------------------------------------------------------- /doc/references/AM_1971_02_12_ed.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/references/AM_1971_02_12_ed.mp3 -------------------------------------------------------------------------------- /doc/references/Babylonian-Notatin-and-the-Hurrian-Melodic-Texts_Music-and-Letters-1994-WEST-161-79.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/references/Babylonian-Notatin-and-the-Hurrian-Melodic-Texts_Music-and-Letters-1994-WEST-161-79.pdf -------------------------------------------------------------------------------- /doc/references/Crickmore-Iconea20081.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/references/Crickmore-Iconea20081.pdf -------------------------------------------------------------------------------- /doc/references/JCS64_Crickmore.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/references/JCS64_Crickmore.pdf -------------------------------------------------------------------------------- /doc/references/gurney.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/references/gurney.pdf -------------------------------------------------------------------------------- /doc/references/gurney2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/references/gurney2.pdf -------------------------------------------------------------------------------- /doc/references/kilmer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/references/kilmer.pdf -------------------------------------------------------------------------------- /doc/references/srutis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/references/srutis.pdf -------------------------------------------------------------------------------- /doc/references/wulstan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/references/wulstan.pdf -------------------------------------------------------------------------------- /doc/spectrum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/doc/spectrum.jpg -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/helper.py -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/plugin.json -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismButton_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismButton_0.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismButton_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismButton_1.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismFloatReadout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismFloatReadout.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismIndicator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismIndicator.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismIntegerReadout.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismIntegerReadout.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismKnob.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismKnob.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismLargeButton_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismLargeButton_0.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismLargeButton_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismLargeButton_1.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismMonoIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismMonoIn.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismMonoOut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismMonoOut.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismPolyIn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismPolyIn.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismPolyOut.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismPolyOut.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismSSwitch_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismSSwitch_0.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismSSwitch_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismSSwitch_1.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismSSwitch_2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismSSwitch_2.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismSlider.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismSlider.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismSliderHandle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismSliderHandle.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismSliderNop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismSliderNop.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/PrismTrimpot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/PrismTrimpot.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_Jack.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_Jack.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_Knob_L.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_Knob_L.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_Knob_S.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_Knob_S.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_Switch2_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_Switch2_1.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_Switch3_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_Switch3_1.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_Switch3_2-08.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_Switch3_2-08.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_Switch3_2-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_Switch3_2-11.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_Switch3_3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_Switch3_3.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_button_0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_button_0.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_button_1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_button_1.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_fader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_fader.svg -------------------------------------------------------------------------------- /res/ComponentLibrary/prism_triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/ComponentLibrary/prism_triangle.svg -------------------------------------------------------------------------------- /res/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/OFL.txt -------------------------------------------------------------------------------- /res/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/README.txt -------------------------------------------------------------------------------- /res/RainbowScaleExpander.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/RainbowScaleExpander.svg -------------------------------------------------------------------------------- /res/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /res/mean.scl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/mean.scl -------------------------------------------------------------------------------- /res/pi_over_e.vcvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/pi_over_e.vcvm -------------------------------------------------------------------------------- /res/prism_Rainbow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/res/prism_Rainbow.svg -------------------------------------------------------------------------------- /src/Audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Audio.cpp -------------------------------------------------------------------------------- /src/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Common.hpp -------------------------------------------------------------------------------- /src/Constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Constants.cpp -------------------------------------------------------------------------------- /src/Controller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Controller.cpp -------------------------------------------------------------------------------- /src/Envelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Envelope.cpp -------------------------------------------------------------------------------- /src/Filter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Filter.cpp -------------------------------------------------------------------------------- /src/Inputs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Inputs.cpp -------------------------------------------------------------------------------- /src/LEDRing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/LEDRing.cpp -------------------------------------------------------------------------------- /src/LPF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/LPF.cpp -------------------------------------------------------------------------------- /src/Levels.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Levels.cpp -------------------------------------------------------------------------------- /src/Q.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Q.cpp -------------------------------------------------------------------------------- /src/Rainbow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Rainbow.cpp -------------------------------------------------------------------------------- /src/Rainbow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Rainbow.hpp -------------------------------------------------------------------------------- /src/RainbowExpander.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/RainbowExpander.cpp -------------------------------------------------------------------------------- /src/Rotation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Rotation.cpp -------------------------------------------------------------------------------- /src/Tuning.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/Tuning.cpp -------------------------------------------------------------------------------- /src/dsp/Bogaudio-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/dsp/Bogaudio-LICENSE.txt -------------------------------------------------------------------------------- /src/dsp/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/dsp/noise.hpp -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/plugin.hpp -------------------------------------------------------------------------------- /src/scales/BP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/BP.cpp -------------------------------------------------------------------------------- /src/scales/Buchla296.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/Buchla296.cpp -------------------------------------------------------------------------------- /src/scales/ET_Chromatic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/ET_Chromatic.cpp -------------------------------------------------------------------------------- /src/scales/ET_Intervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/ET_Intervals.cpp -------------------------------------------------------------------------------- /src/scales/ET_Major.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/ET_Major.cpp -------------------------------------------------------------------------------- /src/scales/ET_Minor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/ET_Minor.cpp -------------------------------------------------------------------------------- /src/scales/ET_Triad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/ET_Triad.cpp -------------------------------------------------------------------------------- /src/scales/ET_Wholestep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/ET_Wholestep.cpp -------------------------------------------------------------------------------- /src/scales/Gamelan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/Gamelan.cpp -------------------------------------------------------------------------------- /src/scales/Indian_Penta.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/Indian_Penta.cpp -------------------------------------------------------------------------------- /src/scales/Indian_Shrutis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/Indian_Shrutis.cpp -------------------------------------------------------------------------------- /src/scales/JI_Intervals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/JI_Intervals.cpp -------------------------------------------------------------------------------- /src/scales/JI_Triad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/JI_Triad.cpp -------------------------------------------------------------------------------- /src/scales/JI_Wholestep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/JI_Wholestep.cpp -------------------------------------------------------------------------------- /src/scales/Mesopotamian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/Mesopotamian.cpp -------------------------------------------------------------------------------- /src/scales/Scales.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/Scales.cpp -------------------------------------------------------------------------------- /src/scales/Scales.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/Scales.hpp -------------------------------------------------------------------------------- /src/scales/Seventeen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/Seventeen.cpp -------------------------------------------------------------------------------- /src/scales/UserScale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/UserScale.cpp -------------------------------------------------------------------------------- /src/scales/Video_notused.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/Video_notused.cpp -------------------------------------------------------------------------------- /src/scales/WC_Alpha1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/WC_Alpha1.cpp -------------------------------------------------------------------------------- /src/scales/WC_Alpha2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/WC_Alpha2.cpp -------------------------------------------------------------------------------- /src/scales/WC_Gamma.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/WC_Gamma.cpp -------------------------------------------------------------------------------- /src/scales/WC_Gamma_notused.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/src/scales/WC_Gamma_notused.cpp -------------------------------------------------------------------------------- /ui/RainbowExpander_src.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmalgamatedHarmonics/Prism/HEAD/ui/RainbowExpander_src.svg --------------------------------------------------------------------------------