├── .DS_Store ├── README ├── ofxVectorFieldExample ├── .DS_Store ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── .DS_Store │ ├── data │ │ ├── .DS_Store │ │ ├── .gitkeep │ │ └── puppy3.jpg │ ├── ofxVectorFieldExampleDebug.app │ │ └── Contents │ │ │ ├── Frameworks │ │ │ └── libfmodex.dylib │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── ofxVectorFieldExampleDebug │ │ │ ├── PkgInfo │ │ │ ├── Resources │ │ │ └── icon-debug.icns │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ └── vectorFieldDebug.app │ │ └── Contents │ │ ├── Frameworks │ │ ├── GLUT.framework │ │ │ ├── GLUT │ │ │ ├── Headers │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── GLUT │ │ │ │ ├── Headers │ │ │ │ │ ├── copy.h │ │ │ │ │ ├── extrude.h │ │ │ │ │ ├── glsmap.h │ │ │ │ │ ├── glsmapint.h │ │ │ │ │ ├── glut.h │ │ │ │ │ ├── glutbitmap.h │ │ │ │ │ ├── glutf90.h │ │ │ │ │ ├── glutstroke.h │ │ │ │ │ ├── gutil.h │ │ │ │ │ ├── intersect.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── rot.h │ │ │ │ │ ├── segment.h │ │ │ │ │ ├── tube.h │ │ │ │ │ ├── tube_gc.h │ │ │ │ │ └── vvector.h │ │ │ │ └── Resources │ │ │ │ │ ├── Caution.tiff │ │ │ │ │ ├── English.lproj │ │ │ │ │ ├── GLUT.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ │ └── objects.nib │ │ │ │ │ ├── GLUTUI.strings │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── blankCursor.tiff │ │ │ │ │ ├── bottomCursor.tiff │ │ │ │ │ ├── bottomleftCursor.tiff │ │ │ │ │ ├── bottomrightCursor.tiff │ │ │ │ │ ├── crossCursor.tiff │ │ │ │ │ ├── cycleCursor.tiff │ │ │ │ │ ├── destroyCursor.tiff │ │ │ │ │ ├── fingerCursor.tiff │ │ │ │ │ ├── helpCursor.tiff │ │ │ │ │ ├── leftCursor.tiff │ │ │ │ │ ├── leftRightCursor.tiff │ │ │ │ │ ├── rightArrowCursor.tiff │ │ │ │ │ ├── rightCursor.tiff │ │ │ │ │ ├── sprayCursor.tiff │ │ │ │ │ ├── topCursor.tiff │ │ │ │ │ ├── topleftCursor.tiff │ │ │ │ │ ├── toprightCursor.tiff │ │ │ │ │ ├── upDownCursor.tiff │ │ │ │ │ └── waitCursor.tiff │ │ │ │ └── Current │ │ └── libfmodex.dylib │ │ ├── Info.plist │ │ ├── MacOS │ │ └── vectorFieldDebug │ │ ├── PkgInfo │ │ └── Resources │ │ ├── data │ │ ├── .gitkeep │ │ ├── puppy.jpg │ │ ├── puppy2.jpg │ │ └── puppy3.jpg │ │ └── icon-debug.icns ├── config.make ├── ofxVectorFieldExample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ │ └── xcuserdata │ │ │ └── ayruos.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcshareddata │ │ └── xcschemes │ │ ├── ofxVectorFieldExample Debug.xcscheme │ │ └── ofxVectorFieldExample Release.xcscheme ├── openFrameworks-Info.plist ├── src │ ├── Particle.cpp │ ├── Particle.h │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h └── vectorField.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── carolinerecord.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ └── xcschemes │ │ ├── vectorField Debug.xcscheme │ │ └── vectorField Release.xcscheme │ └── xcuserdata │ └── carolinerecord.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist └── src ├── ofxVectorField.cpp └── ofxVectorField.h /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/.DS_Store -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/README -------------------------------------------------------------------------------- /ofxVectorFieldExample/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/.DS_Store -------------------------------------------------------------------------------- /ofxVectorFieldExample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/Makefile -------------------------------------------------------------------------------- /ofxVectorFieldExample/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/Project.xcconfig -------------------------------------------------------------------------------- /ofxVectorFieldExample/addons.make: -------------------------------------------------------------------------------- 1 | ofxVectorField 2 | -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/.DS_Store -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/data/.DS_Store -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/data/puppy3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/data/puppy3.jpg -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/Frameworks/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/Frameworks/libfmodex.dylib -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/Info.plist -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/MacOS/ofxVectorFieldExampleDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/MacOS/ofxVectorFieldExampleDebug -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/Resources/icon-debug.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/Resources/icon-debug.icns -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/ofxVectorFieldExampleDebug.app/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- 1 | Versions/Current/GLUT -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/GLUT.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Frameworks/libfmodex.dylib -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Info.plist -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/MacOS/vectorFieldDebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/MacOS/vectorFieldDebug -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Resources/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Resources/data/puppy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Resources/data/puppy.jpg -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Resources/data/puppy2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Resources/data/puppy2.jpg -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Resources/data/puppy3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Resources/data/puppy3.jpg -------------------------------------------------------------------------------- /ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Resources/icon-debug.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/bin/vectorFieldDebug.app/Contents/Resources/icon-debug.icns -------------------------------------------------------------------------------- /ofxVectorFieldExample/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/config.make -------------------------------------------------------------------------------- /ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.xcworkspace/xcuserdata/ayruos.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/project.xcworkspace/xcuserdata/ayruos.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/xcshareddata/xcschemes/ofxVectorFieldExample Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/xcshareddata/xcschemes/ofxVectorFieldExample Debug.xcscheme -------------------------------------------------------------------------------- /ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/xcshareddata/xcschemes/ofxVectorFieldExample Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/ofxVectorFieldExample.xcodeproj/xcshareddata/xcschemes/ofxVectorFieldExample Release.xcscheme -------------------------------------------------------------------------------- /ofxVectorFieldExample/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/openFrameworks-Info.plist -------------------------------------------------------------------------------- /ofxVectorFieldExample/src/Particle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/src/Particle.cpp -------------------------------------------------------------------------------- /ofxVectorFieldExample/src/Particle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/src/Particle.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/src/main.cpp -------------------------------------------------------------------------------- /ofxVectorFieldExample/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/src/ofApp.cpp -------------------------------------------------------------------------------- /ofxVectorFieldExample/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/src/ofApp.h -------------------------------------------------------------------------------- /ofxVectorFieldExample/vectorField.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/vectorField.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ofxVectorFieldExample/vectorField.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/vectorField.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ofxVectorFieldExample/vectorField.xcodeproj/project.xcworkspace/xcuserdata/carolinerecord.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/vectorField.xcodeproj/project.xcworkspace/xcuserdata/carolinerecord.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ofxVectorFieldExample/vectorField.xcodeproj/xcshareddata/xcschemes/vectorField Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/vectorField.xcodeproj/xcshareddata/xcschemes/vectorField Debug.xcscheme -------------------------------------------------------------------------------- /ofxVectorFieldExample/vectorField.xcodeproj/xcshareddata/xcschemes/vectorField Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/vectorField.xcodeproj/xcshareddata/xcschemes/vectorField Release.xcscheme -------------------------------------------------------------------------------- /ofxVectorFieldExample/vectorField.xcodeproj/xcuserdata/carolinerecord.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/ofxVectorFieldExample/vectorField.xcodeproj/xcuserdata/carolinerecord.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /src/ofxVectorField.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/src/ofxVectorField.cpp -------------------------------------------------------------------------------- /src/ofxVectorField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mantissa/ofxVectorField/HEAD/src/ofxVectorField.h --------------------------------------------------------------------------------