├── .gitignore ├── README.md ├── ZED-Viewer.vcxproj ├── ZED-Viewer.vcxproj.filters ├── addons.make ├── icon.rc ├── ofxZED.sln └── src ├── example ├── main.cpp ├── ofApp.cpp └── ofApp.h ├── ofxZED.cpp └── ofxZED.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/README.md -------------------------------------------------------------------------------- /ZED-Viewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/ZED-Viewer.vcxproj -------------------------------------------------------------------------------- /ZED-Viewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/ZED-Viewer.vcxproj.filters -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /icon.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/icon.rc -------------------------------------------------------------------------------- /ofxZED.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/ofxZED.sln -------------------------------------------------------------------------------- /src/example/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/src/example/main.cpp -------------------------------------------------------------------------------- /src/example/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/src/example/ofApp.cpp -------------------------------------------------------------------------------- /src/example/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/src/example/ofApp.h -------------------------------------------------------------------------------- /src/ofxZED.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/src/ofxZED.cpp -------------------------------------------------------------------------------- /src/ofxZED.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andsynchrony/ofxZED/HEAD/src/ofxZED.h --------------------------------------------------------------------------------