├── .gitignore ├── README.md ├── example_datGui ├── .cproject ├── .project ├── Makefile ├── addons.make ├── bin │ └── data │ │ ├── settings.xml │ │ └── web │ │ ├── index.html │ │ └── js │ │ ├── guiGlueMod.js │ │ ├── libs │ │ ├── dat.color.min.js │ │ ├── dat.gui.min.js │ │ └── jquery-1.7.1.min.js │ │ ├── main.js │ │ ├── syncedParams.js │ │ └── utils.js ├── config.make └── src │ ├── main.cpp │ ├── ofDatGuiApp.cpp │ └── ofDatGuiApp.h ├── example_remoteUI ├── .cproject ├── .project ├── Makefile ├── addons.make ├── config.make └── src │ ├── main.cpp │ ├── ofRemoteUIApp.cpp │ └── ofRemoteUIApp.h └── src ├── ofxSyncedParams.cpp └── ofxSyncedParams.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/README.md -------------------------------------------------------------------------------- /example_datGui/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/.cproject -------------------------------------------------------------------------------- /example_datGui/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/.project -------------------------------------------------------------------------------- /example_datGui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/Makefile -------------------------------------------------------------------------------- /example_datGui/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/addons.make -------------------------------------------------------------------------------- /example_datGui/bin/data/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/bin/data/settings.xml -------------------------------------------------------------------------------- /example_datGui/bin/data/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/bin/data/web/index.html -------------------------------------------------------------------------------- /example_datGui/bin/data/web/js/guiGlueMod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/bin/data/web/js/guiGlueMod.js -------------------------------------------------------------------------------- /example_datGui/bin/data/web/js/libs/dat.color.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/bin/data/web/js/libs/dat.color.min.js -------------------------------------------------------------------------------- /example_datGui/bin/data/web/js/libs/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/bin/data/web/js/libs/dat.gui.min.js -------------------------------------------------------------------------------- /example_datGui/bin/data/web/js/libs/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/bin/data/web/js/libs/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /example_datGui/bin/data/web/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/bin/data/web/js/main.js -------------------------------------------------------------------------------- /example_datGui/bin/data/web/js/syncedParams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/bin/data/web/js/syncedParams.js -------------------------------------------------------------------------------- /example_datGui/bin/data/web/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/bin/data/web/js/utils.js -------------------------------------------------------------------------------- /example_datGui/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/config.make -------------------------------------------------------------------------------- /example_datGui/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/src/main.cpp -------------------------------------------------------------------------------- /example_datGui/src/ofDatGuiApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/src/ofDatGuiApp.cpp -------------------------------------------------------------------------------- /example_datGui/src/ofDatGuiApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_datGui/src/ofDatGuiApp.h -------------------------------------------------------------------------------- /example_remoteUI/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_remoteUI/.cproject -------------------------------------------------------------------------------- /example_remoteUI/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_remoteUI/.project -------------------------------------------------------------------------------- /example_remoteUI/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_remoteUI/Makefile -------------------------------------------------------------------------------- /example_remoteUI/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_remoteUI/addons.make -------------------------------------------------------------------------------- /example_remoteUI/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_remoteUI/config.make -------------------------------------------------------------------------------- /example_remoteUI/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_remoteUI/src/main.cpp -------------------------------------------------------------------------------- /example_remoteUI/src/ofRemoteUIApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_remoteUI/src/ofRemoteUIApp.cpp -------------------------------------------------------------------------------- /example_remoteUI/src/ofRemoteUIApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/example_remoteUI/src/ofRemoteUIApp.h -------------------------------------------------------------------------------- /src/ofxSyncedParams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/src/ofxSyncedParams.cpp -------------------------------------------------------------------------------- /src/ofxSyncedParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fx-lange/ofxSyncedParams/HEAD/src/ofxSyncedParams.h --------------------------------------------------------------------------------