├── .gitignore ├── LICENSE.txt ├── README.md ├── example_Basic ├── Project.xcconfig ├── addons.make ├── example_Basic.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── example_Basic Debug.xcscheme │ │ └── example_Basic Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── example_Events ├── Project.xcconfig ├── addons.make ├── example_Events.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── example_Events Debug.xcscheme │ │ └── example_Events Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── example_SimpleInstrument ├── Project.xcconfig ├── addons.make ├── example_SimpleInstrument.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── example_SimpleInstrument Debug.xcscheme │ │ └── example_SimpleInstrument Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── example_StepSequencer ├── Project.xcconfig ├── addons.make ├── example_StepSequencer.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── example_StepSequencer Debug.xcscheme │ │ └── example_StepSequencer Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── ofxaddons_thumbnail.png └── src ├── Tonic.h ├── Tonic ├── ADSR.cpp ├── ADSR.h ├── Arithmetic.cpp ├── Arithmetic.h ├── BasicDelay.cpp ├── BasicDelay.h ├── BufferFiller.cpp ├── BufferFiller.h ├── CombFilter.cpp ├── CombFilter.h ├── CompressorLimiter.cpp ├── CompressorLimiter.h ├── ControlArithmetic.cpp ├── ControlArithmetic.h ├── ControlChangeNotifier.cpp ├── ControlChangeNotifier.h ├── ControlComparison.cpp ├── ControlComparison.h ├── ControlConditioner.cpp ├── ControlConditioner.h ├── ControlCounter.cpp ├── ControlCounter.h ├── ControlDbToLinear.cpp ├── ControlDbToLinear.h ├── ControlDelay.cpp ├── ControlDelay.h ├── ControlFloor.cpp ├── ControlFloor.h ├── ControlGenerator.cpp ├── ControlGenerator.h ├── ControlMetro.cpp ├── ControlMetro.h ├── ControlMetroDivider.cpp ├── ControlMetroDivider.h ├── ControlMidiToFreq.cpp ├── ControlMidiToFreq.h ├── ControlParameter.cpp ├── ControlParameter.h ├── ControlPrinter.cpp ├── ControlPrinter.h ├── ControlPulse.cpp ├── ControlPulse.h ├── ControlRandom.cpp ├── ControlRandom.h ├── ControlRecorder.cpp ├── ControlRecorder.h ├── ControlSnapToScale.cpp ├── ControlSnapToScale.h ├── ControlStepper.cpp ├── ControlStepper.h ├── ControlSwitcher.cpp ├── ControlSwitcher.h ├── ControlTrigger.cpp ├── ControlTrigger.h ├── ControlValue.cpp ├── ControlValue.h ├── ControlXYSpeed.cpp ├── ControlXYSpeed.h ├── DelayUtils.cpp ├── DelayUtils.h ├── Effect.cpp ├── Effect.h ├── FilterUtils.cpp ├── FilterUtils.h ├── Filters.cpp ├── Filters.h ├── FixedValue.cpp ├── FixedValue.h ├── Generator.cpp ├── Generator.h ├── LFNoise.cpp ├── LFNoise.h ├── Mixer.cpp ├── Mixer.h ├── MonoToStereoPanner.cpp ├── MonoToStereoPanner.h ├── Noise.cpp ├── Noise.h ├── RampedValue.cpp ├── RampedValue.h ├── RectWave.cpp ├── RectWave.h ├── Reverb.cpp ├── Reverb.h ├── RingBuffer.cpp ├── RingBuffer.h ├── SampleTable.cpp ├── SampleTable.h ├── SawtoothWave.cpp ├── SawtoothWave.h ├── SineWave.cpp ├── SineWave.h ├── SquareWave.h ├── StereoDelay.cpp ├── StereoDelay.h ├── Synth.cpp ├── Synth.h ├── TableLookupOsc.cpp ├── TableLookupOsc.h ├── TonicCore.h ├── TonicFrames.cpp ├── TonicFrames.h └── TriangleWave.h ├── ofxTonic.h ├── ofxTonicSynth.cpp └── ofxTonicSynth.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/README.md -------------------------------------------------------------------------------- /example_Basic/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Basic/Project.xcconfig -------------------------------------------------------------------------------- /example_Basic/addons.make: -------------------------------------------------------------------------------- 1 | ofxTonic 2 | -------------------------------------------------------------------------------- /example_Basic/example_Basic.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Basic/example_Basic.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example_Basic/example_Basic.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Basic/example_Basic.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_Basic/example_Basic.xcodeproj/xcshareddata/xcschemes/example_Basic Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Basic/example_Basic.xcodeproj/xcshareddata/xcschemes/example_Basic Debug.xcscheme -------------------------------------------------------------------------------- /example_Basic/example_Basic.xcodeproj/xcshareddata/xcschemes/example_Basic Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Basic/example_Basic.xcodeproj/xcshareddata/xcschemes/example_Basic Release.xcscheme -------------------------------------------------------------------------------- /example_Basic/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Basic/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example_Basic/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Basic/src/main.cpp -------------------------------------------------------------------------------- /example_Basic/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Basic/src/testApp.cpp -------------------------------------------------------------------------------- /example_Basic/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Basic/src/testApp.h -------------------------------------------------------------------------------- /example_Events/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Events/Project.xcconfig -------------------------------------------------------------------------------- /example_Events/addons.make: -------------------------------------------------------------------------------- 1 | ofxTonic 2 | -------------------------------------------------------------------------------- /example_Events/example_Events.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Events/example_Events.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example_Events/example_Events.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Events/example_Events.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_Events/example_Events.xcodeproj/xcshareddata/xcschemes/example_Events Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Events/example_Events.xcodeproj/xcshareddata/xcschemes/example_Events Debug.xcscheme -------------------------------------------------------------------------------- /example_Events/example_Events.xcodeproj/xcshareddata/xcschemes/example_Events Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Events/example_Events.xcodeproj/xcshareddata/xcschemes/example_Events Release.xcscheme -------------------------------------------------------------------------------- /example_Events/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Events/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example_Events/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Events/src/main.cpp -------------------------------------------------------------------------------- /example_Events/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Events/src/testApp.cpp -------------------------------------------------------------------------------- /example_Events/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_Events/src/testApp.h -------------------------------------------------------------------------------- /example_SimpleInstrument/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_SimpleInstrument/Project.xcconfig -------------------------------------------------------------------------------- /example_SimpleInstrument/addons.make: -------------------------------------------------------------------------------- 1 | ofxTonic 2 | -------------------------------------------------------------------------------- /example_SimpleInstrument/example_SimpleInstrument.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_SimpleInstrument/example_SimpleInstrument.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example_SimpleInstrument/example_SimpleInstrument.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_SimpleInstrument/example_SimpleInstrument.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_SimpleInstrument/example_SimpleInstrument.xcodeproj/xcshareddata/xcschemes/example_SimpleInstrument Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_SimpleInstrument/example_SimpleInstrument.xcodeproj/xcshareddata/xcschemes/example_SimpleInstrument Debug.xcscheme -------------------------------------------------------------------------------- /example_SimpleInstrument/example_SimpleInstrument.xcodeproj/xcshareddata/xcschemes/example_SimpleInstrument Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_SimpleInstrument/example_SimpleInstrument.xcodeproj/xcshareddata/xcschemes/example_SimpleInstrument Release.xcscheme -------------------------------------------------------------------------------- /example_SimpleInstrument/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_SimpleInstrument/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example_SimpleInstrument/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_SimpleInstrument/src/main.cpp -------------------------------------------------------------------------------- /example_SimpleInstrument/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_SimpleInstrument/src/testApp.cpp -------------------------------------------------------------------------------- /example_SimpleInstrument/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_SimpleInstrument/src/testApp.h -------------------------------------------------------------------------------- /example_StepSequencer/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_StepSequencer/Project.xcconfig -------------------------------------------------------------------------------- /example_StepSequencer/addons.make: -------------------------------------------------------------------------------- 1 | ofxTonic 2 | -------------------------------------------------------------------------------- /example_StepSequencer/example_StepSequencer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_StepSequencer/example_StepSequencer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example_StepSequencer/example_StepSequencer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_StepSequencer/example_StepSequencer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example_StepSequencer/example_StepSequencer.xcodeproj/xcshareddata/xcschemes/example_StepSequencer Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_StepSequencer/example_StepSequencer.xcodeproj/xcshareddata/xcschemes/example_StepSequencer Debug.xcscheme -------------------------------------------------------------------------------- /example_StepSequencer/example_StepSequencer.xcodeproj/xcshareddata/xcschemes/example_StepSequencer Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_StepSequencer/example_StepSequencer.xcodeproj/xcshareddata/xcschemes/example_StepSequencer Release.xcscheme -------------------------------------------------------------------------------- /example_StepSequencer/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_StepSequencer/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example_StepSequencer/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_StepSequencer/src/main.cpp -------------------------------------------------------------------------------- /example_StepSequencer/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_StepSequencer/src/testApp.cpp -------------------------------------------------------------------------------- /example_StepSequencer/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/example_StepSequencer/src/testApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/Tonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic.h -------------------------------------------------------------------------------- /src/Tonic/ADSR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ADSR.cpp -------------------------------------------------------------------------------- /src/Tonic/ADSR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ADSR.h -------------------------------------------------------------------------------- /src/Tonic/Arithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Arithmetic.cpp -------------------------------------------------------------------------------- /src/Tonic/Arithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Arithmetic.h -------------------------------------------------------------------------------- /src/Tonic/BasicDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/BasicDelay.cpp -------------------------------------------------------------------------------- /src/Tonic/BasicDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/BasicDelay.h -------------------------------------------------------------------------------- /src/Tonic/BufferFiller.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/BufferFiller.cpp -------------------------------------------------------------------------------- /src/Tonic/BufferFiller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/BufferFiller.h -------------------------------------------------------------------------------- /src/Tonic/CombFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/CombFilter.cpp -------------------------------------------------------------------------------- /src/Tonic/CombFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/CombFilter.h -------------------------------------------------------------------------------- /src/Tonic/CompressorLimiter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/CompressorLimiter.cpp -------------------------------------------------------------------------------- /src/Tonic/CompressorLimiter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/CompressorLimiter.h -------------------------------------------------------------------------------- /src/Tonic/ControlArithmetic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlArithmetic.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlArithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlArithmetic.h -------------------------------------------------------------------------------- /src/Tonic/ControlChangeNotifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlChangeNotifier.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlChangeNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlChangeNotifier.h -------------------------------------------------------------------------------- /src/Tonic/ControlComparison.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlComparison.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlComparison.h -------------------------------------------------------------------------------- /src/Tonic/ControlConditioner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlConditioner.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlConditioner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlConditioner.h -------------------------------------------------------------------------------- /src/Tonic/ControlCounter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlCounter.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlCounter.h -------------------------------------------------------------------------------- /src/Tonic/ControlDbToLinear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlDbToLinear.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlDbToLinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlDbToLinear.h -------------------------------------------------------------------------------- /src/Tonic/ControlDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlDelay.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlDelay.h -------------------------------------------------------------------------------- /src/Tonic/ControlFloor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlFloor.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlFloor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlFloor.h -------------------------------------------------------------------------------- /src/Tonic/ControlGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlGenerator.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlGenerator.h -------------------------------------------------------------------------------- /src/Tonic/ControlMetro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlMetro.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlMetro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlMetro.h -------------------------------------------------------------------------------- /src/Tonic/ControlMetroDivider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlMetroDivider.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlMetroDivider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlMetroDivider.h -------------------------------------------------------------------------------- /src/Tonic/ControlMidiToFreq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlMidiToFreq.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlMidiToFreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlMidiToFreq.h -------------------------------------------------------------------------------- /src/Tonic/ControlParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlParameter.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlParameter.h -------------------------------------------------------------------------------- /src/Tonic/ControlPrinter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlPrinter.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlPrinter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlPrinter.h -------------------------------------------------------------------------------- /src/Tonic/ControlPulse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlPulse.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlPulse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlPulse.h -------------------------------------------------------------------------------- /src/Tonic/ControlRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlRandom.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlRandom.h -------------------------------------------------------------------------------- /src/Tonic/ControlRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlRecorder.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlRecorder.h -------------------------------------------------------------------------------- /src/Tonic/ControlSnapToScale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlSnapToScale.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlSnapToScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlSnapToScale.h -------------------------------------------------------------------------------- /src/Tonic/ControlStepper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlStepper.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlStepper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlStepper.h -------------------------------------------------------------------------------- /src/Tonic/ControlSwitcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlSwitcher.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlSwitcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlSwitcher.h -------------------------------------------------------------------------------- /src/Tonic/ControlTrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlTrigger.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlTrigger.h -------------------------------------------------------------------------------- /src/Tonic/ControlValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlValue.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlValue.h -------------------------------------------------------------------------------- /src/Tonic/ControlXYSpeed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlXYSpeed.cpp -------------------------------------------------------------------------------- /src/Tonic/ControlXYSpeed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/ControlXYSpeed.h -------------------------------------------------------------------------------- /src/Tonic/DelayUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/DelayUtils.cpp -------------------------------------------------------------------------------- /src/Tonic/DelayUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/DelayUtils.h -------------------------------------------------------------------------------- /src/Tonic/Effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Effect.cpp -------------------------------------------------------------------------------- /src/Tonic/Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Effect.h -------------------------------------------------------------------------------- /src/Tonic/FilterUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/FilterUtils.cpp -------------------------------------------------------------------------------- /src/Tonic/FilterUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/FilterUtils.h -------------------------------------------------------------------------------- /src/Tonic/Filters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Filters.cpp -------------------------------------------------------------------------------- /src/Tonic/Filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Filters.h -------------------------------------------------------------------------------- /src/Tonic/FixedValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/FixedValue.cpp -------------------------------------------------------------------------------- /src/Tonic/FixedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/FixedValue.h -------------------------------------------------------------------------------- /src/Tonic/Generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Generator.cpp -------------------------------------------------------------------------------- /src/Tonic/Generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Generator.h -------------------------------------------------------------------------------- /src/Tonic/LFNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/LFNoise.cpp -------------------------------------------------------------------------------- /src/Tonic/LFNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/LFNoise.h -------------------------------------------------------------------------------- /src/Tonic/Mixer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Mixer.cpp -------------------------------------------------------------------------------- /src/Tonic/Mixer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Mixer.h -------------------------------------------------------------------------------- /src/Tonic/MonoToStereoPanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/MonoToStereoPanner.cpp -------------------------------------------------------------------------------- /src/Tonic/MonoToStereoPanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/MonoToStereoPanner.h -------------------------------------------------------------------------------- /src/Tonic/Noise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Noise.cpp -------------------------------------------------------------------------------- /src/Tonic/Noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Noise.h -------------------------------------------------------------------------------- /src/Tonic/RampedValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/RampedValue.cpp -------------------------------------------------------------------------------- /src/Tonic/RampedValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/RampedValue.h -------------------------------------------------------------------------------- /src/Tonic/RectWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/RectWave.cpp -------------------------------------------------------------------------------- /src/Tonic/RectWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/RectWave.h -------------------------------------------------------------------------------- /src/Tonic/Reverb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Reverb.cpp -------------------------------------------------------------------------------- /src/Tonic/Reverb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Reverb.h -------------------------------------------------------------------------------- /src/Tonic/RingBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/RingBuffer.cpp -------------------------------------------------------------------------------- /src/Tonic/RingBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/RingBuffer.h -------------------------------------------------------------------------------- /src/Tonic/SampleTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/SampleTable.cpp -------------------------------------------------------------------------------- /src/Tonic/SampleTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/SampleTable.h -------------------------------------------------------------------------------- /src/Tonic/SawtoothWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/SawtoothWave.cpp -------------------------------------------------------------------------------- /src/Tonic/SawtoothWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/SawtoothWave.h -------------------------------------------------------------------------------- /src/Tonic/SineWave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/SineWave.cpp -------------------------------------------------------------------------------- /src/Tonic/SineWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/SineWave.h -------------------------------------------------------------------------------- /src/Tonic/SquareWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/SquareWave.h -------------------------------------------------------------------------------- /src/Tonic/StereoDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/StereoDelay.cpp -------------------------------------------------------------------------------- /src/Tonic/StereoDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/StereoDelay.h -------------------------------------------------------------------------------- /src/Tonic/Synth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Synth.cpp -------------------------------------------------------------------------------- /src/Tonic/Synth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/Synth.h -------------------------------------------------------------------------------- /src/Tonic/TableLookupOsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/TableLookupOsc.cpp -------------------------------------------------------------------------------- /src/Tonic/TableLookupOsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/TableLookupOsc.h -------------------------------------------------------------------------------- /src/Tonic/TonicCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/TonicCore.h -------------------------------------------------------------------------------- /src/Tonic/TonicFrames.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/TonicFrames.cpp -------------------------------------------------------------------------------- /src/Tonic/TonicFrames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/TonicFrames.h -------------------------------------------------------------------------------- /src/Tonic/TriangleWave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/Tonic/TriangleWave.h -------------------------------------------------------------------------------- /src/ofxTonic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/ofxTonic.h -------------------------------------------------------------------------------- /src/ofxTonicSynth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/ofxTonicSynth.cpp -------------------------------------------------------------------------------- /src/ofxTonicSynth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TonicAudio/ofxTonic/HEAD/src/ofxTonicSynth.h --------------------------------------------------------------------------------