├── .appveyor.yml ├── .gitignore ├── .project ├── .travis.yml ├── README.md ├── addon_config.mk ├── docs └── Doxyfile.txt ├── example-cursorPainting ├── Makefile ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-oilPaintingSimulation ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── picture.jpg └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-videoAnimation ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── westinghouse.mov └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-webcam ├── Makefile ├── addons.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── license.md ├── ofxaddons_thumbnail.png ├── src ├── ofxOilBristle.cpp ├── ofxOilBristle.h ├── ofxOilBrush.cpp ├── ofxOilBrush.h ├── ofxOilPaint.h ├── ofxOilSimulator.cpp ├── ofxOilSimulator.h ├── ofxOilTrace.cpp └── ofxOilTrace.h └── video_screenshot.png /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/.project -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/README.md -------------------------------------------------------------------------------- /addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/addon_config.mk -------------------------------------------------------------------------------- /docs/Doxyfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/docs/Doxyfile.txt -------------------------------------------------------------------------------- /example-cursorPainting/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-cursorPainting/Makefile -------------------------------------------------------------------------------- /example-cursorPainting/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-cursorPainting/addons.make -------------------------------------------------------------------------------- /example-cursorPainting/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-cursorPainting/src/main.cpp -------------------------------------------------------------------------------- /example-cursorPainting/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-cursorPainting/src/ofApp.cpp -------------------------------------------------------------------------------- /example-cursorPainting/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-cursorPainting/src/ofApp.h -------------------------------------------------------------------------------- /example-oilPaintingSimulation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-oilPaintingSimulation/Makefile -------------------------------------------------------------------------------- /example-oilPaintingSimulation/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-oilPaintingSimulation/addons.make -------------------------------------------------------------------------------- /example-oilPaintingSimulation/bin/data/picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-oilPaintingSimulation/bin/data/picture.jpg -------------------------------------------------------------------------------- /example-oilPaintingSimulation/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-oilPaintingSimulation/src/main.cpp -------------------------------------------------------------------------------- /example-oilPaintingSimulation/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-oilPaintingSimulation/src/ofApp.cpp -------------------------------------------------------------------------------- /example-oilPaintingSimulation/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-oilPaintingSimulation/src/ofApp.h -------------------------------------------------------------------------------- /example-videoAnimation/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-videoAnimation/Makefile -------------------------------------------------------------------------------- /example-videoAnimation/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-videoAnimation/addons.make -------------------------------------------------------------------------------- /example-videoAnimation/bin/data/westinghouse.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-videoAnimation/bin/data/westinghouse.mov -------------------------------------------------------------------------------- /example-videoAnimation/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-videoAnimation/src/main.cpp -------------------------------------------------------------------------------- /example-videoAnimation/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-videoAnimation/src/ofApp.cpp -------------------------------------------------------------------------------- /example-videoAnimation/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-videoAnimation/src/ofApp.h -------------------------------------------------------------------------------- /example-webcam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-webcam/Makefile -------------------------------------------------------------------------------- /example-webcam/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-webcam/addons.make -------------------------------------------------------------------------------- /example-webcam/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-webcam/src/main.cpp -------------------------------------------------------------------------------- /example-webcam/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-webcam/src/ofApp.cpp -------------------------------------------------------------------------------- /example-webcam/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/example-webcam/src/ofApp.h -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/license.md -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /src/ofxOilBristle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/src/ofxOilBristle.cpp -------------------------------------------------------------------------------- /src/ofxOilBristle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/src/ofxOilBristle.h -------------------------------------------------------------------------------- /src/ofxOilBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/src/ofxOilBrush.cpp -------------------------------------------------------------------------------- /src/ofxOilBrush.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/src/ofxOilBrush.h -------------------------------------------------------------------------------- /src/ofxOilPaint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/src/ofxOilPaint.h -------------------------------------------------------------------------------- /src/ofxOilSimulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/src/ofxOilSimulator.cpp -------------------------------------------------------------------------------- /src/ofxOilSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/src/ofxOilSimulator.h -------------------------------------------------------------------------------- /src/ofxOilTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/src/ofxOilTrace.cpp -------------------------------------------------------------------------------- /src/ofxOilTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/src/ofxOilTrace.h -------------------------------------------------------------------------------- /video_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jagracar/ofxOilPaint/HEAD/video_screenshot.png --------------------------------------------------------------------------------