├── .gitignore ├── README.md ├── example-color ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── config.make ├── example-color.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── example Debug.xcscheme │ │ └── example Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── example ├── Makefile ├── Project.xcconfig ├── addons.make ├── bin │ ├── data │ │ └── .gitkeep │ └── example.app │ │ └── Contents │ │ ├── Frameworks │ │ └── GLUT.framework │ │ │ ├── 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 │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.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 │ │ │ └── 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 │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTClipboard.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.nib │ │ │ │ │ └── objects.nib │ │ │ │ ├── GLUTPreferences.nib │ │ │ │ │ ├── classes.nib │ │ │ │ │ ├── info.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 │ │ │ ├── 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 │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTClipboard.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.nib │ │ │ │ └── objects.nib │ │ │ ├── GLUTPreferences.nib │ │ │ │ ├── classes.nib │ │ │ │ ├── info.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 │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── example │ │ └── libfmodex.dylib │ │ ├── PkgInfo │ │ └── Resources │ │ └── icon.icns ├── config.make ├── example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── example.xccheckout │ │ └── xcuserdata │ │ │ └── tado.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── example Debug.xcscheme │ │ │ └── example Release.xcscheme │ └── xcuserdata │ │ └── tado.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── ofxaddons_thumbnail.png ├── screenshot.jpg └── src ├── ofxTwistedRibbon.cpp └── ofxTwistedRibbon.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/README.md -------------------------------------------------------------------------------- /example-color/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/Makefile -------------------------------------------------------------------------------- /example-color/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/Project.xcconfig -------------------------------------------------------------------------------- /example-color/addons.make: -------------------------------------------------------------------------------- 1 | ofxTwistedRibbon 2 | -------------------------------------------------------------------------------- /example-color/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-color/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/config.make -------------------------------------------------------------------------------- /example-color/example-color.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/example-color.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-color/example-color.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/example-color.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /example-color/example-color.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/example-color.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /example-color/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example-color/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/src/main.cpp -------------------------------------------------------------------------------- /example-color/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/src/ofApp.cpp -------------------------------------------------------------------------------- /example-color/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example-color/src/ofApp.h -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/Project.xcconfig -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- 1 | ofxTwistedRibbon 2 | -------------------------------------------------------------------------------- /example/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/GLUT -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/port.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmapint.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutbitmap.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutstroke.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/intersect.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Caution.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/info.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUT.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/info.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTClipboard.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/classes.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/info.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTPreferences.nib/objects.nib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTUI.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/GLUTUI.strings -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/Info.plist -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Frameworks/GLUT.framework/Versions/Current/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Info.plist -------------------------------------------------------------------------------- /example/bin/example.app/Contents/MacOS/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/MacOS/example -------------------------------------------------------------------------------- /example/bin/example.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /example/bin/example.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /example/bin/example.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/bin/example.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /example/config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/config.make -------------------------------------------------------------------------------- /example/example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/xcshareddata/example.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/example.xcodeproj/project.xcworkspace/xcshareddata/example.xccheckout -------------------------------------------------------------------------------- /example/example.xcodeproj/project.xcworkspace/xcuserdata/tado.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/example.xcodeproj/project.xcworkspace/xcuserdata/tado.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Debug.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/example.xcodeproj/xcshareddata/xcschemes/example Release.xcscheme -------------------------------------------------------------------------------- /example/example.xcodeproj/xcuserdata/tado.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/example.xcodeproj/xcuserdata/tado.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /example/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/openFrameworks-Info.plist -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/screenshot.jpg -------------------------------------------------------------------------------- /src/ofxTwistedRibbon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/src/ofxTwistedRibbon.cpp -------------------------------------------------------------------------------- /src/ofxTwistedRibbon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tado/ofxTwistedRibbon/HEAD/src/ofxTwistedRibbon.h --------------------------------------------------------------------------------