├── .gitignore ├── Delay.jucer ├── Images └── delayScreenshot.PNG ├── README.md └── Source ├── AudioDSP ├── Delay.cpp ├── Delay.h ├── DelayLine.h ├── LFO.cpp └── LFO.h ├── Helper └── Identifiers.h ├── LookAndFeel └── KnobLookAndFeel.h ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp └── PluginProcessor.h /.gitignore: -------------------------------------------------------------------------------- 1 | Builds/ 2 | JuceLibraryCode/ 3 | -------------------------------------------------------------------------------- /Delay.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Delay.jucer -------------------------------------------------------------------------------- /Images/delayScreenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Images/delayScreenshot.PNG -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/README.md -------------------------------------------------------------------------------- /Source/AudioDSP/Delay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/AudioDSP/Delay.cpp -------------------------------------------------------------------------------- /Source/AudioDSP/Delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/AudioDSP/Delay.h -------------------------------------------------------------------------------- /Source/AudioDSP/DelayLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/AudioDSP/DelayLine.h -------------------------------------------------------------------------------- /Source/AudioDSP/LFO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/AudioDSP/LFO.cpp -------------------------------------------------------------------------------- /Source/AudioDSP/LFO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/AudioDSP/LFO.h -------------------------------------------------------------------------------- /Source/Helper/Identifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/Helper/Identifiers.h -------------------------------------------------------------------------------- /Source/LookAndFeel/KnobLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/LookAndFeel/KnobLookAndFeel.h -------------------------------------------------------------------------------- /Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/PluginEditor.h -------------------------------------------------------------------------------- /Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joonastuo/Delay/HEAD/Source/PluginProcessor.h --------------------------------------------------------------------------------