├── .gitignore ├── Audio Demos ├── 5th Sweep Pad.mp3 ├── Basses.mp3 ├── Echo Pad.mp3 ├── Glide.mp3 ├── Organs+Brass.mp3 ├── PWM.mp3 ├── README.markdown ├── Reso Staccato.mp3 └── Three Pads.mp3 ├── Chapter Code ├── Chapter 10 │ ├── JX11.jucer │ └── Source │ │ ├── Envelope.h │ │ ├── NoiseGenerator.h │ │ ├── Oscillator.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ ├── Preset.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── Utils.h │ │ └── Voice.h ├── Chapter 11 │ ├── JX11.jucer │ └── Source │ │ ├── Envelope.h │ │ ├── NoiseGenerator.h │ │ ├── Oscillator.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ ├── Preset.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── Utils.h │ │ └── Voice.h ├── Chapter 12 │ ├── JX11.jucer │ └── Source │ │ ├── Envelope.h │ │ ├── Filter.h │ │ ├── NoiseGenerator.h │ │ ├── Oscillator.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ ├── Preset.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── Utils.h │ │ └── Voice.h ├── Chapter 13 │ ├── JX11.jucer │ └── Source │ │ ├── Envelope.h │ │ ├── Filter.h │ │ ├── LookAndFeel.cpp │ │ ├── LookAndFeel.h │ │ ├── NoiseGenerator.h │ │ ├── Oscillator.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ ├── Preset.h │ │ ├── RotaryKnob.cpp │ │ ├── RotaryKnob.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── Utils.h │ │ └── Voice.h ├── Chapter 2 │ ├── JX11.jucer │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ └── PluginProcessor.h ├── Chapter 3 │ ├── JX11.jucer │ └── Source │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ └── PluginProcessor.h ├── Chapter 4 │ ├── JX11.jucer │ └── Source │ │ ├── NoiseGenerator.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── Utils.h │ │ └── Voice.h ├── Chapter 5 │ ├── JX11.jucer │ └── Source │ │ ├── NoiseGenerator.h │ │ ├── Oscillator.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── Utils.h │ │ └── Voice.h ├── Chapter 6 │ ├── JX11.jucer │ └── Source │ │ ├── NoiseGenerator.h │ │ ├── Oscillator.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── Utils.h │ │ └── Voice.h ├── Chapter 7 │ ├── JX11.jucer │ └── Source │ │ ├── NoiseGenerator.h │ │ ├── Oscillator.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ ├── Preset.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── Utils.h │ │ └── Voice.h ├── Chapter 8 │ ├── JX11.jucer │ └── Source │ │ ├── Envelope.h │ │ ├── NoiseGenerator.h │ │ ├── Oscillator.h │ │ ├── PluginEditor.cpp │ │ ├── PluginEditor.h │ │ ├── PluginProcessor.cpp │ │ ├── PluginProcessor.h │ │ ├── Preset.h │ │ ├── Synth.cpp │ │ ├── Synth.h │ │ ├── Utils.h │ │ └── Voice.h └── Chapter 9 │ ├── JX11.jucer │ └── Source │ ├── Envelope.h │ ├── NoiseGenerator.h │ ├── Oscillator.h │ ├── PluginEditor.cpp │ ├── PluginEditor.h │ ├── PluginProcessor.cpp │ ├── PluginProcessor.h │ ├── Preset.h │ ├── Synth.cpp │ ├── Synth.h │ ├── Utils.h │ └── Voice.h ├── Errata.markdown ├── Finished Project ├── JX11.jucer └── Source │ ├── Envelope.h │ ├── Filter.h │ ├── NoiseGenerator.h │ ├── Oscillator.h │ ├── PluginEditor.cpp │ ├── PluginEditor.h │ ├── PluginProcessor.cpp │ ├── PluginProcessor.h │ ├── Preset.h │ ├── Synth.cpp │ ├── Synth.h │ ├── Utils.h │ └── Voice.h ├── LICENSE ├── README.markdown ├── Resources ├── Lato-Medium.ttf └── OFL.txt ├── book-cover.jpg └── midi-note-chart.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/.gitignore -------------------------------------------------------------------------------- /Audio Demos/5th Sweep Pad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Audio Demos/5th Sweep Pad.mp3 -------------------------------------------------------------------------------- /Audio Demos/Basses.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Audio Demos/Basses.mp3 -------------------------------------------------------------------------------- /Audio Demos/Echo Pad.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Audio Demos/Echo Pad.mp3 -------------------------------------------------------------------------------- /Audio Demos/Glide.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Audio Demos/Glide.mp3 -------------------------------------------------------------------------------- /Audio Demos/Organs+Brass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Audio Demos/Organs+Brass.mp3 -------------------------------------------------------------------------------- /Audio Demos/PWM.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Audio Demos/PWM.mp3 -------------------------------------------------------------------------------- /Audio Demos/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Audio Demos/README.markdown -------------------------------------------------------------------------------- /Audio Demos/Reso Staccato.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Audio Demos/Reso Staccato.mp3 -------------------------------------------------------------------------------- /Audio Demos/Three Pads.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Audio Demos/Three Pads.mp3 -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/Envelope.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/Oscillator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/Preset.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 10/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 10/Source/Voice.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/Envelope.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/Oscillator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/Preset.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 11/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 11/Source/Voice.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/Envelope.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/Filter.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/Oscillator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/Preset.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 12/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 12/Source/Voice.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/Envelope.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/Filter.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/LookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/LookAndFeel.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/LookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/LookAndFeel.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/Oscillator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/Preset.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/RotaryKnob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/RotaryKnob.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/RotaryKnob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/RotaryKnob.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 13/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 13/Source/Voice.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 2/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 2/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 2/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 2/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 2/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 2/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 2/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 2/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 2/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 2/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 3/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 3/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 3/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 3/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 3/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 3/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 3/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 3/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 3/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 3/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 4/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 4/Source/Voice.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/Oscillator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 5/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 5/Source/Voice.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/Oscillator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 6/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 6/Source/Voice.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/Oscillator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/Preset.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 7/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 7/Source/Voice.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/Envelope.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/Oscillator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/Preset.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 8/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 8/Source/Voice.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/JX11.jucer -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/Envelope.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/Oscillator.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/PluginEditor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/Preset.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/Synth.cpp -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/Synth.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/Utils.h -------------------------------------------------------------------------------- /Chapter Code/Chapter 9/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Chapter Code/Chapter 9/Source/Voice.h -------------------------------------------------------------------------------- /Errata.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Errata.markdown -------------------------------------------------------------------------------- /Finished Project/JX11.jucer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/JX11.jucer -------------------------------------------------------------------------------- /Finished Project/Source/Envelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/Envelope.h -------------------------------------------------------------------------------- /Finished Project/Source/Filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/Filter.h -------------------------------------------------------------------------------- /Finished Project/Source/NoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/NoiseGenerator.h -------------------------------------------------------------------------------- /Finished Project/Source/Oscillator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/Oscillator.h -------------------------------------------------------------------------------- /Finished Project/Source/PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/PluginEditor.cpp -------------------------------------------------------------------------------- /Finished Project/Source/PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/PluginEditor.h -------------------------------------------------------------------------------- /Finished Project/Source/PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/PluginProcessor.cpp -------------------------------------------------------------------------------- /Finished Project/Source/PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/PluginProcessor.h -------------------------------------------------------------------------------- /Finished Project/Source/Preset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/Preset.h -------------------------------------------------------------------------------- /Finished Project/Source/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/Synth.cpp -------------------------------------------------------------------------------- /Finished Project/Source/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/Synth.h -------------------------------------------------------------------------------- /Finished Project/Source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/Utils.h -------------------------------------------------------------------------------- /Finished Project/Source/Voice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Finished Project/Source/Voice.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/README.markdown -------------------------------------------------------------------------------- /Resources/Lato-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Resources/Lato-Medium.ttf -------------------------------------------------------------------------------- /Resources/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/Resources/OFL.txt -------------------------------------------------------------------------------- /book-cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/book-cover.jpg -------------------------------------------------------------------------------- /midi-note-chart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheAudioProgrammer/BuildASynthPluginBook/HEAD/midi-note-chart.jpg --------------------------------------------------------------------------------