├── .gitignore ├── LICENSE ├── README.md ├── example-simple ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-syncopation ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── src ├── SyncopationData.h ├── ofxTidalCycles.cpp └── ofxTidalCycles.h └── startup.scd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/README.md -------------------------------------------------------------------------------- /example-simple/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | ofxTidalCycles 3 | -------------------------------------------------------------------------------- /example-simple/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/example-simple/src/main.cpp -------------------------------------------------------------------------------- /example-simple/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/example-simple/src/ofApp.cpp -------------------------------------------------------------------------------- /example-simple/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/example-simple/src/ofApp.h -------------------------------------------------------------------------------- /example-syncopation/addons.make: -------------------------------------------------------------------------------- 1 | ofxOsc 2 | ofxTidalCycles 3 | -------------------------------------------------------------------------------- /example-syncopation/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/example-syncopation/src/main.cpp -------------------------------------------------------------------------------- /example-syncopation/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/example-syncopation/src/ofApp.cpp -------------------------------------------------------------------------------- /example-syncopation/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/example-syncopation/src/ofApp.h -------------------------------------------------------------------------------- /src/SyncopationData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/src/SyncopationData.h -------------------------------------------------------------------------------- /src/ofxTidalCycles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/src/ofxTidalCycles.cpp -------------------------------------------------------------------------------- /src/ofxTidalCycles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/src/ofxTidalCycles.h -------------------------------------------------------------------------------- /startup.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTidalCycles/HEAD/startup.scd --------------------------------------------------------------------------------