├── .gitignore ├── .gitmodules ├── LICENSE.txt ├── Makefile ├── README.md ├── common └── constants.hpp ├── component └── diode.hpp ├── docs └── screenshots │ ├── ring_modulator.png │ └── wave_folder.png ├── plugin.json ├── res ├── CleanRingModulator.svg └── CleanWaveFolder.svg ├── src ├── JE.cpp ├── JE.hpp ├── RingModulator.cpp └── WaveFolder.cpp └── utils └── meta.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/README.md -------------------------------------------------------------------------------- /common/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/common/constants.hpp -------------------------------------------------------------------------------- /component/diode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/component/diode.hpp -------------------------------------------------------------------------------- /docs/screenshots/ring_modulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/docs/screenshots/ring_modulator.png -------------------------------------------------------------------------------- /docs/screenshots/wave_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/docs/screenshots/wave_folder.png -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/plugin.json -------------------------------------------------------------------------------- /res/CleanRingModulator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/res/CleanRingModulator.svg -------------------------------------------------------------------------------- /res/CleanWaveFolder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/res/CleanWaveFolder.svg -------------------------------------------------------------------------------- /src/JE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/src/JE.cpp -------------------------------------------------------------------------------- /src/JE.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/src/JE.hpp -------------------------------------------------------------------------------- /src/RingModulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/src/RingModulator.cpp -------------------------------------------------------------------------------- /src/WaveFolder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/src/WaveFolder.cpp -------------------------------------------------------------------------------- /utils/meta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eres-j/VCVRack-plugin-JE/HEAD/utils/meta.hpp --------------------------------------------------------------------------------