├── .gitignore ├── CHANGES.txt ├── LICENSE.txt ├── README.md ├── addon_config.mk ├── appUtilsExample ├── addons.make ├── bin │ └── data │ │ ├── .gitignore │ │ ├── .gitkeep │ │ ├── controlPanelSettings.xml │ │ ├── quadWarper.xml │ │ └── transformSettings.xml └── src │ ├── main.cpp │ ├── ofApp.cpp │ ├── ofApp.h │ └── scenes │ ├── LineScene.h │ ├── ParticleScene.h │ └── scenes.h ├── appUtilsIOSExample ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── vera.ttf └── src │ ├── Button.h │ ├── TextScene.h │ ├── main.mm │ ├── ofApp.h │ └── ofApp.mm ├── ofxaddons_thumbnail.png ├── res ├── logo.png └── org_knife.png └── src ├── matrix_funcs.h ├── ofxApp.cpp ├── ofxApp.h ├── ofxAppUtils.h ├── ofxBitmapString.h ├── ofxMovingAverage.h ├── ofxParticle.cpp ├── ofxParticle.h ├── ofxParticleManager.h ├── ofxQuadWarper.cpp ├── ofxQuadWarper.h ├── ofxScene.cpp ├── ofxScene.h ├── ofxSceneManager.cpp ├── ofxSceneManager.h ├── ofxTimer.h ├── ofxTransformPanel.cpp ├── ofxTransformPanel.h ├── ofxTransformer.cpp └── ofxTransformer.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/CHANGES.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/addon_config.mk -------------------------------------------------------------------------------- /appUtilsExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxAppUtils 2 | ofxGui 3 | -------------------------------------------------------------------------------- /appUtilsExample/bin/data/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appUtilsExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appUtilsExample/bin/data/controlPanelSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsExample/bin/data/controlPanelSettings.xml -------------------------------------------------------------------------------- /appUtilsExample/bin/data/quadWarper.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsExample/bin/data/quadWarper.xml -------------------------------------------------------------------------------- /appUtilsExample/bin/data/transformSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsExample/bin/data/transformSettings.xml -------------------------------------------------------------------------------- /appUtilsExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsExample/src/main.cpp -------------------------------------------------------------------------------- /appUtilsExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsExample/src/ofApp.cpp -------------------------------------------------------------------------------- /appUtilsExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsExample/src/ofApp.h -------------------------------------------------------------------------------- /appUtilsExample/src/scenes/LineScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsExample/src/scenes/LineScene.h -------------------------------------------------------------------------------- /appUtilsExample/src/scenes/ParticleScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsExample/src/scenes/ParticleScene.h -------------------------------------------------------------------------------- /appUtilsExample/src/scenes/scenes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsExample/src/scenes/scenes.h -------------------------------------------------------------------------------- /appUtilsIOSExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxAppUtils 2 | -------------------------------------------------------------------------------- /appUtilsIOSExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /appUtilsIOSExample/bin/data/vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsIOSExample/bin/data/vera.ttf -------------------------------------------------------------------------------- /appUtilsIOSExample/src/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsIOSExample/src/Button.h -------------------------------------------------------------------------------- /appUtilsIOSExample/src/TextScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsIOSExample/src/TextScene.h -------------------------------------------------------------------------------- /appUtilsIOSExample/src/main.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsIOSExample/src/main.mm -------------------------------------------------------------------------------- /appUtilsIOSExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsIOSExample/src/ofApp.h -------------------------------------------------------------------------------- /appUtilsIOSExample/src/ofApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/appUtilsIOSExample/src/ofApp.mm -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /res/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/res/logo.png -------------------------------------------------------------------------------- /res/org_knife.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/res/org_knife.png -------------------------------------------------------------------------------- /src/matrix_funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/matrix_funcs.h -------------------------------------------------------------------------------- /src/ofxApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxApp.cpp -------------------------------------------------------------------------------- /src/ofxApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxApp.h -------------------------------------------------------------------------------- /src/ofxAppUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxAppUtils.h -------------------------------------------------------------------------------- /src/ofxBitmapString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxBitmapString.h -------------------------------------------------------------------------------- /src/ofxMovingAverage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxMovingAverage.h -------------------------------------------------------------------------------- /src/ofxParticle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxParticle.cpp -------------------------------------------------------------------------------- /src/ofxParticle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxParticle.h -------------------------------------------------------------------------------- /src/ofxParticleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxParticleManager.h -------------------------------------------------------------------------------- /src/ofxQuadWarper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxQuadWarper.cpp -------------------------------------------------------------------------------- /src/ofxQuadWarper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxQuadWarper.h -------------------------------------------------------------------------------- /src/ofxScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxScene.cpp -------------------------------------------------------------------------------- /src/ofxScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxScene.h -------------------------------------------------------------------------------- /src/ofxSceneManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxSceneManager.cpp -------------------------------------------------------------------------------- /src/ofxSceneManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxSceneManager.h -------------------------------------------------------------------------------- /src/ofxTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxTimer.h -------------------------------------------------------------------------------- /src/ofxTransformPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxTransformPanel.cpp -------------------------------------------------------------------------------- /src/ofxTransformPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxTransformPanel.h -------------------------------------------------------------------------------- /src/ofxTransformer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxTransformer.cpp -------------------------------------------------------------------------------- /src/ofxTransformer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danomatika/ofxAppUtils/HEAD/src/ofxTransformer.h --------------------------------------------------------------------------------