├── .gitignore ├── LICENSE ├── README.md ├── example-audio ├── DSP.h ├── Oscilloscope.h ├── main.cpp └── ofApp.h ├── example-simple ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── src ├── Dylib.cpp ├── Dylib.h ├── FileWatcher.cpp ├── FileWatcher.h ├── ReloadableClass.h ├── ReloadableSoundStream.h ├── liveCodeUtils.cpp ├── liveCodeUtils.h ├── ofxCppSketch.cpp ├── ofxCppSketch.h ├── ofxCppSketchSoundStream.cpp └── ofxCppSketchSoundStream.h /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/README.md -------------------------------------------------------------------------------- /example-audio/DSP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/example-audio/DSP.h -------------------------------------------------------------------------------- /example-audio/Oscilloscope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/example-audio/Oscilloscope.h -------------------------------------------------------------------------------- /example-audio/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/example-audio/main.cpp -------------------------------------------------------------------------------- /example-audio/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/example-audio/ofApp.h -------------------------------------------------------------------------------- /example-simple/addons.make: -------------------------------------------------------------------------------- 1 | ofxCppSketch 2 | -------------------------------------------------------------------------------- /example-simple/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/example-simple/src/main.cpp -------------------------------------------------------------------------------- /example-simple/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/example-simple/src/ofApp.cpp -------------------------------------------------------------------------------- /example-simple/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/example-simple/src/ofApp.h -------------------------------------------------------------------------------- /src/Dylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/Dylib.cpp -------------------------------------------------------------------------------- /src/Dylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/Dylib.h -------------------------------------------------------------------------------- /src/FileWatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/FileWatcher.cpp -------------------------------------------------------------------------------- /src/FileWatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/FileWatcher.h -------------------------------------------------------------------------------- /src/ReloadableClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/ReloadableClass.h -------------------------------------------------------------------------------- /src/ReloadableSoundStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/ReloadableSoundStream.h -------------------------------------------------------------------------------- /src/liveCodeUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/liveCodeUtils.cpp -------------------------------------------------------------------------------- /src/liveCodeUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/liveCodeUtils.h -------------------------------------------------------------------------------- /src/ofxCppSketch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/ofxCppSketch.cpp -------------------------------------------------------------------------------- /src/ofxCppSketch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/ofxCppSketch.h -------------------------------------------------------------------------------- /src/ofxCppSketchSoundStream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/ofxCppSketchSoundStream.cpp -------------------------------------------------------------------------------- /src/ofxCppSketchSoundStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elf-audio/ofxCppSketch/HEAD/src/ofxCppSketchSoundStream.h --------------------------------------------------------------------------------