├── .gitignore ├── LICENSE ├── README.md ├── example-curl_noise ├── .gitignore ├── Makefile ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example-curl_noise_advanced ├── .gitignore ├── Makefile ├── addons.make ├── bin │ ├── data │ │ ├── .gitkeep │ │ └── shaders │ │ │ ├── render_frag.glsl │ │ │ └── render_vert.glsl │ ├── example-curl_noise_debug │ └── libs │ │ ├── libfmodex.so │ │ └── libfmodexp64.so ├── config.make └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── header.png ├── ofxaddons_thumbnail.png ├── screenshot_1.png ├── screenshot_2.png └── src ├── CurlNoise.cpp ├── CurlNoise.h ├── ParticleEmitter.cpp ├── ParticleEmitter.h ├── ParticleManager.cpp ├── ParticleManager.h ├── ofxCurlNoise.cpp └── ofxCurlNoise.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/README.md -------------------------------------------------------------------------------- /example-curl_noise/.gitignore: -------------------------------------------------------------------------------- 1 | bin/example-curl_noise* 2 | bin/libs 3 | obj/ -------------------------------------------------------------------------------- /example-curl_noise/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise/Makefile -------------------------------------------------------------------------------- /example-curl_noise/addons.make: -------------------------------------------------------------------------------- 1 | ofxCurlNoise 2 | ofxGui -------------------------------------------------------------------------------- /example-curl_noise/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-curl_noise/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise/config.make -------------------------------------------------------------------------------- /example-curl_noise/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise/src/main.cpp -------------------------------------------------------------------------------- /example-curl_noise/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise/src/ofApp.cpp -------------------------------------------------------------------------------- /example-curl_noise/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise/src/ofApp.h -------------------------------------------------------------------------------- /example-curl_noise_advanced/.gitignore: -------------------------------------------------------------------------------- 1 | bin/example-curl_noise_advanced* 2 | bin/libs 3 | obj/ -------------------------------------------------------------------------------- /example-curl_noise_advanced/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/Makefile -------------------------------------------------------------------------------- /example-curl_noise_advanced/addons.make: -------------------------------------------------------------------------------- 1 | ofxCurlNoise 2 | ofxGui -------------------------------------------------------------------------------- /example-curl_noise_advanced/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-curl_noise_advanced/bin/data/shaders/render_frag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/bin/data/shaders/render_frag.glsl -------------------------------------------------------------------------------- /example-curl_noise_advanced/bin/data/shaders/render_vert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/bin/data/shaders/render_vert.glsl -------------------------------------------------------------------------------- /example-curl_noise_advanced/bin/example-curl_noise_debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/bin/example-curl_noise_debug -------------------------------------------------------------------------------- /example-curl_noise_advanced/bin/libs/libfmodex.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/bin/libs/libfmodex.so -------------------------------------------------------------------------------- /example-curl_noise_advanced/bin/libs/libfmodexp64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/bin/libs/libfmodexp64.so -------------------------------------------------------------------------------- /example-curl_noise_advanced/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/config.make -------------------------------------------------------------------------------- /example-curl_noise_advanced/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/src/main.cpp -------------------------------------------------------------------------------- /example-curl_noise_advanced/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/src/ofApp.cpp -------------------------------------------------------------------------------- /example-curl_noise_advanced/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/example-curl_noise_advanced/src/ofApp.h -------------------------------------------------------------------------------- /header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/header.png -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/screenshot_1.png -------------------------------------------------------------------------------- /screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/screenshot_2.png -------------------------------------------------------------------------------- /src/CurlNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/src/CurlNoise.cpp -------------------------------------------------------------------------------- /src/CurlNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/src/CurlNoise.h -------------------------------------------------------------------------------- /src/ParticleEmitter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/src/ParticleEmitter.cpp -------------------------------------------------------------------------------- /src/ParticleEmitter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/src/ParticleEmitter.h -------------------------------------------------------------------------------- /src/ParticleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/src/ParticleManager.cpp -------------------------------------------------------------------------------- /src/ParticleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/src/ParticleManager.h -------------------------------------------------------------------------------- /src/ofxCurlNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/src/ofxCurlNoise.cpp -------------------------------------------------------------------------------- /src/ofxCurlNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elaye/ofxCurlNoise/HEAD/src/ofxCurlNoise.h --------------------------------------------------------------------------------