├── .gitignore ├── Blender ├── README.md └── select_by_color.py ├── Cyril ├── README.md ├── _docs │ ├── code_experiments.png │ ├── code_horizon.png │ ├── code_old.png │ ├── code_performance1.png │ └── code_retro.png ├── builds │ ├── cyril_beta6.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 │ │ │ └── Syphon.framework │ │ │ │ ├── Headers │ │ │ │ ├── Resources │ │ │ │ ├── Syphon │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── Syphon.h │ │ │ │ │ ├── SyphonClient.h │ │ │ │ │ ├── SyphonImage.h │ │ │ │ │ ├── SyphonServer.h │ │ │ │ │ └── SyphonServerDirectory.h │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ └── Syphon │ │ │ │ └── Current │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ ├── cyril │ │ │ └── libfmodex.dylib │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── .gitignore │ │ │ ├── DroidSansMono.ttf │ │ │ ├── cyril-logo.icns │ │ │ ├── icon.icns │ │ │ ├── ofxaddons_thumbnail.png │ │ │ ├── readme.md │ │ │ ├── screenshot.png │ │ │ ├── screenshot_godray.png │ │ │ └── screenshot_toon.png │ ├── cyril_beta6other.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 │ │ │ └── Syphon.framework │ │ │ │ ├── Headers │ │ │ │ ├── Resources │ │ │ │ ├── Syphon │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── Syphon.h │ │ │ │ │ ├── SyphonClient.h │ │ │ │ │ ├── SyphonImage.h │ │ │ │ │ ├── SyphonServer.h │ │ │ │ │ └── SyphonServerDirectory.h │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ └── Syphon │ │ │ │ └── Current │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ ├── cyril │ │ │ └── libfmodex.dylib │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── .gitignore │ │ │ ├── DroidSansMono.ttf │ │ │ ├── cyril-logo.icns │ │ │ ├── icon.icns │ │ │ ├── ofxaddons_thumbnail.png │ │ │ ├── readme.md │ │ │ ├── screenshot.png │ │ │ ├── screenshot_godray.png │ │ │ └── screenshot_toon.png │ ├── cyril_kotutku.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 │ │ │ └── Syphon.framework │ │ │ │ ├── Resources │ │ │ │ ├── Syphon │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Resources │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── Info.plist │ │ │ │ └── Syphon │ │ │ │ └── Current │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ ├── cyril │ │ │ └── libfmodex.dylib │ │ │ ├── PkgInfo │ │ │ └── Resources │ │ │ ├── .gitignore │ │ │ ├── Doxyfile │ │ │ ├── DroidSansMono.ttf │ │ │ ├── License.txt │ │ │ ├── addon_config.mk │ │ │ ├── cyril-logo.icns │ │ │ ├── icon.icns │ │ │ ├── ofxaddons_thumbnail.png │ │ │ ├── readme.md │ │ │ ├── screenshot.png │ │ │ ├── screenshot_godray.png │ │ │ └── screenshot_toon.png │ └── cyril_syphon.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 │ │ └── Syphon.framework │ │ │ ├── Resources │ │ │ ├── Syphon │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── Info.plist │ │ │ └── Syphon │ │ │ └── Current │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── cyril │ │ └── libfmodex.dylib │ │ ├── PkgInfo │ │ └── Resources │ │ ├── .gitignore │ │ ├── Doxyfile │ │ ├── DroidSansMono.ttf │ │ ├── License.txt │ │ ├── README.md │ │ ├── addon_config.mk │ │ ├── cyril-logo.icns │ │ ├── icon.icns │ │ ├── ofxaddons_thumbnail.png │ │ ├── screenshot.png │ │ ├── screenshot_godray.png │ │ └── screenshot_toon.png ├── cyril_syphon.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 │ │ └── Syphon.framework │ │ │ ├── Resources │ │ │ ├── Syphon │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Resources │ │ │ │ ├── English.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ └── Info.plist │ │ │ └── Syphon │ │ │ └── Current │ │ ├── Info.plist │ │ ├── MacOS │ │ ├── cyril │ │ └── libfmodex.dylib │ │ ├── PkgInfo │ │ └── Resources │ │ ├── .gitignore │ │ ├── Doxyfile │ │ ├── DroidSansMono.ttf │ │ ├── License.txt │ │ ├── README.md │ │ ├── addon_config.mk │ │ ├── cyril-logo.icns │ │ ├── icon.icns │ │ ├── ofxaddons_thumbnail.png │ │ ├── screenshot.png │ │ ├── screenshot_godray.png │ │ └── screenshot_toon.png └── data │ ├── code_default │ ├── 0.cy │ ├── 1.cy │ ├── 2.cy │ ├── 3.cy │ ├── 4.cy │ ├── 5.cy │ ├── 6.cy │ ├── 7.cy │ ├── 8.cy │ └── 9.cy │ ├── code_empty │ ├── 0.cy │ ├── 1.cy │ ├── 2.cy │ ├── 3.cy │ ├── 4.cy │ ├── 5.cy │ ├── 6.cy │ ├── 7.cy │ ├── 8.cy │ └── 9.cy │ ├── code_experiments │ ├── 0.cy │ ├── 1.cy │ ├── 2.cy │ ├── 3.cy │ ├── 4.cy │ ├── 5.cy │ ├── 6.cy │ ├── 7.cy │ ├── 8.cy │ └── 9.cy │ ├── code_horizon │ ├── 0.cy │ ├── 1.cy │ ├── 2.cy │ ├── 3.cy │ ├── 4.cy │ ├── 5.cy │ ├── 6.cy │ ├── 7.cy │ ├── 8.cy │ └── 9.cy │ ├── code_old │ ├── 0.cy │ ├── 1.cy │ ├── 2.cy │ ├── 3.cy │ ├── 4.cy │ ├── 5.cy │ ├── 6.cy │ ├── 7.cy │ ├── 8.cy │ └── 9.cy │ ├── code_performance1 │ ├── 0.cy │ ├── 1.cy │ ├── 2.cy │ ├── 3.cy │ ├── 4.cy │ ├── 5.cy │ ├── 6.cy │ ├── 7.cy │ ├── 8.cy │ └── 9.cy │ ├── code_retro │ ├── 0.cy │ ├── 1.cy │ ├── 2.cy │ ├── 3.cy │ ├── 4.cy │ ├── 5.cy │ ├── 6.cy │ ├── 7.cy │ ├── 8.cy │ └── 9.cy │ └── sprites │ ├── 1.png │ └── 6.png ├── KodeLife ├── README.md ├── _docs │ ├── checkers.png │ ├── checkers_disorted.png │ ├── coordinates.png │ ├── pseudoGlitch.png │ └── zigzag.png ├── assets │ └── artificial-photography-147671-unsplash.jpg ├── checkers.frag ├── checkers_disorted.frag ├── coordinates.frag ├── pseudoGlitch.klproj └── zigzag.frag ├── LICENSE ├── Processing ├── README.md ├── _docs │ └── hacking.png └── hacking │ ├── data │ ├── Inconsolata-Regular.ttf │ ├── code.txt │ └── test.txt │ ├── hacking.pde │ └── libraries │ └── oscP5 │ ├── examples │ ├── basics-without-comments │ │ ├── oscP5bundle │ │ │ └── oscP5bundle.pde │ │ ├── oscP5listener │ │ │ └── oscP5listener.pde │ │ ├── oscP5parse │ │ │ └── oscP5parse.pde │ │ ├── oscP5plug │ │ │ └── oscP5plug.pde │ │ ├── oscP5properties │ │ │ └── oscP5properties.pde │ │ ├── oscP5receive │ │ │ └── oscP5receive.pde │ │ └── oscP5send │ │ │ └── oscP5send.pde │ ├── basics │ │ ├── oscP5bundle │ │ │ └── oscP5bundle.pde │ │ ├── oscP5listener │ │ │ └── oscP5listener.pde │ │ ├── oscP5parse │ │ │ └── oscP5parse.pde │ │ ├── oscP5plug │ │ │ └── oscP5plug.pde │ │ ├── oscP5properties │ │ │ └── oscP5properties.pde │ │ ├── oscP5receive │ │ │ └── oscP5receive.pde │ │ └── oscP5send │ │ │ └── oscP5send.pde │ └── legacy │ │ ├── oscP5broadcastClient │ │ └── oscP5broadcastClient.pde │ │ ├── oscP5broadcaster │ │ └── oscP5broadcaster.pde │ │ ├── oscP5bundle │ │ └── oscP5bundle.pde │ │ ├── oscP5flush │ │ └── oscP5flush.pde │ │ ├── oscP5message │ │ └── oscP5message.pde │ │ ├── oscP5multicast │ │ └── oscP5multicast.pde │ │ ├── oscP5oscArgument │ │ └── oscP5oscArgument.pde │ │ ├── oscP5parsing │ │ └── oscP5parsing.pde │ │ ├── oscP5plug │ │ └── oscP5plug.pde │ │ ├── oscP5properties │ │ └── oscP5properties.pde │ │ ├── oscP5sendReceive │ │ └── oscP5sendReceive.pde │ │ └── oscP5tcp │ │ └── oscP5tcp.pde │ ├── library.properties │ ├── library │ └── oscP5.jar │ ├── reference │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── constant-values.html │ ├── help-doc.html │ ├── index-all.html │ ├── index.html │ ├── netP5 │ │ ├── Bytes.html │ │ ├── Multicast.html │ │ ├── NetAddress.html │ │ ├── NetInfo.html │ │ ├── NetP5.html │ │ ├── TcpClient.html │ │ ├── TcpServer.html │ │ ├── Transmitter.html │ │ ├── UdpClient.html │ │ ├── UdpServer.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── oscP5 │ │ ├── OscArgument.html │ │ ├── OscBundle.html │ │ ├── OscEventListener.html │ │ ├── OscMessage.html │ │ ├── OscP5.html │ │ ├── OscPacket.html │ │ ├── OscPatcher.html │ │ ├── OscPlug.html │ │ ├── OscProperties.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html │ ├── overview-frame.html │ ├── overview-summary.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ └── stylesheet.css │ └── src │ └── main │ └── java │ ├── netP5 │ ├── Bytes.java │ ├── Multicast.java │ ├── NetAddress.java │ ├── NetAddressList.java │ ├── NetInfo.java │ ├── NetP5.java │ ├── TcpClient.java │ ├── TcpServer.java │ ├── Transmitter.java │ ├── UdpClient.java │ └── UdpServer.java │ └── oscP5 │ ├── OscArgument.java │ ├── OscBundle.java │ ├── OscEventListener.java │ ├── OscMessage.java │ ├── OscP5.java │ ├── OscPacket.java │ ├── OscPatcher.java │ ├── OscPlug.java │ └── OscProperties.java ├── QuartzComposer ├── README.md ├── _docs │ ├── cube_wall.png │ ├── double_helix.png │ ├── quack.png │ └── stripes.png ├── cube_wall.qtz ├── double_helix.qtz ├── quack.qtz └── stripes.qtz ├── README.md ├── TouchDesigner ├── Assets │ ├── Freepbr marble-speckled-albedo.png │ ├── Freepbr marble-speckled-metalness.png │ ├── Freepbr marble-speckled-normal.png │ ├── Mixamo Falling.fbx │ ├── Mixamo Ymca Dance.fbx │ ├── Poly Dolphin.mtl │ ├── Poly Dolphin.obj │ ├── Poly Dolphin_BaseColor.png │ ├── Threedscans Nymph.fbx │ ├── Threedscans Nymph_curvature.png │ ├── Threedscans Nymph_normals.png │ ├── Threedscans Nymph_occlusion.png │ ├── Threedscans helios.fbx │ ├── Threedscans helios_norm.png │ ├── Threedscans helios_occlusion.png │ ├── ZByg studio018.hdr │ ├── ZByg studio022.hdr │ └── depth.png ├── Import │ ├── Mixamo_Falling │ │ ├── Chan │ │ │ ├── Take_001.bchan │ │ │ └── mixamo_com.bchan │ │ └── Geo │ │ │ ├── Alpha_Joints.tog │ │ │ └── Alpha_Surface.tog │ ├── Threedscans_Nymph │ │ └── Geo │ │ │ └── Nymph.tog │ └── Threedscans_helios │ │ └── Geo │ │ └── Helios_decimated_005.tog ├── README.md ├── _docs │ ├── acid_shapes.png │ ├── camera_gamecontroller.png │ ├── dancing_polygons.png │ ├── deferred_lights_rain.png │ ├── feedback_scroll.png │ ├── flying_stuff.png │ ├── glamour_workshop.png │ ├── glsl_ball_vertex_extrude.png │ ├── glsl_deform_keep_normals.png │ ├── glsl_hexagons_on_triangles.png │ ├── glsl_hyperspace.png │ ├── glsl_instance_resize.png │ ├── glsl_lowpoly.png │ ├── glsl_lowpoly_displace.png │ ├── glsl_mirror.png │ ├── glsl_spikes.png │ ├── glsl_stripes.png │ ├── glsl_strips_shader_box.png │ ├── glsl_voxelize.png │ ├── grid_texture_control.png │ ├── hyperspace_fall.png │ ├── loop_test.png │ ├── molecules.png │ ├── motion_blur.png │ ├── new_year_counter.png │ ├── pillar_explosions.png │ ├── render_helios_pbr.png │ ├── synthwave_pyramid.png │ ├── text_3d_instances.png │ ├── tunnel.png │ └── zigzags.png ├── acid_shapes.toe ├── camera_gamecontroller.toe ├── dancing_polygons.toe ├── deferred_lights_rain.toe ├── feedback_scroll.toe ├── flying_stuff.toe ├── glamour_workshop.toe ├── glsl_ball_vertex_extrude.toe ├── glsl_deform_keep_normals.toe ├── glsl_hexagons_on_triangles.toe ├── glsl_hyperspace.toe ├── glsl_instance_resize.toe ├── glsl_lowpoly.toe ├── glsl_lowpoly_displace.toe ├── glsl_mirror.toe ├── glsl_spikes.toe ├── glsl_stripes.toe ├── glsl_strips_shader_box.toe ├── glsl_voxelize.toe ├── grid_texture_control.toe ├── hyperspace_fall.toe ├── kinect_basic.toe ├── kinect_basic_nocolor.toe ├── kinect_blob_track.toe ├── kinect_wall_detection.toe ├── kinect_wall_hit_detection.toe ├── loop_test.toe ├── molecules.toe ├── motion_blur.toe ├── new_year_counter.toe ├── pillar_explosions.toe ├── render_helios_pbr.toe ├── set_params_from_dat.toe ├── synthwave_pyramid.toe ├── text_3d_instances.toe ├── tunnel.toe └── zigzags.toe ├── Vuo ├── LICENSE ├── README.md ├── _docs │ ├── CheckerboardTunnel.gen.png │ ├── FirstPersonMovement.png │ ├── FutureCity.png │ ├── HandheldCameraMoving.png │ ├── HandheltCameraParameters.png │ ├── MultipleMovingGraphics.gen.png │ ├── OccultRotator.gen.png │ ├── OscTest.png │ ├── Random3DObjects.gen.png │ ├── RetroBox.png │ ├── Synthwave.gen.png │ ├── TerrainTravel.png │ ├── TerrainTravel2.gen.png │ ├── Text3DGrid.png │ ├── TriangleRipple.gen.png │ ├── TunnelGrid.gen.png │ ├── TunnelGridTile.gen.png │ └── VHStext.gen.png ├── assets │ ├── dog.jpg │ ├── pentagram_black.png │ └── pentagram_white.png ├── compositions │ ├── CheckerboardTunnel.gen.vuo │ ├── FirstPersonMovement.vuo │ ├── FutureCity.vuo │ ├── OscTest.vuo │ ├── Random3DObjects.vuo │ ├── RetroBox.vuo │ ├── Synthwave.gen.vuo │ ├── TerrainTravel.vuo │ ├── TerrainTravel2.gen.vuo │ ├── TunnelGrid.gen.vuo │ └── TunnelGridTile.gen.vuo ├── generators │ ├── HandheldCameraMoving.gen.vuo │ ├── HandheltCameraParameters.gen.vuo │ ├── MultipleMovingGraphics.gen.vuo │ ├── OccultRotator.gen.vuo │ ├── Text3DGrid.vuo │ ├── TriangleRipple.gen.vuo │ └── VHStext.gen.vuo └── nodes │ ├── marcin.10carsOnPathWithGenerator.vuo │ ├── marcin.cameraFollowPath.vuo │ ├── marcin.carOnPathWithGenerator.vuo │ ├── marcin.perpendicularPath.vuo │ ├── marcin.randomMovement.vuo │ └── randomMovementGlitched.vuo ├── readme.rb ├── readme.yml ├── readme_build.rb └── readme_test.rb /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | TouchDesigner/.* 3 | -------------------------------------------------------------------------------- /Blender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Blender/README.md -------------------------------------------------------------------------------- /Blender/select_by_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Blender/select_by_color.py -------------------------------------------------------------------------------- /Cyril/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/README.md -------------------------------------------------------------------------------- /Cyril/_docs/code_experiments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/_docs/code_experiments.png -------------------------------------------------------------------------------- /Cyril/_docs/code_horizon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/_docs/code_horizon.png -------------------------------------------------------------------------------- /Cyril/_docs/code_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/_docs/code_old.png -------------------------------------------------------------------------------- /Cyril/_docs/code_performance1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/_docs/code_performance1.png -------------------------------------------------------------------------------- /Cyril/_docs/code_retro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/_docs/code_retro.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/port.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/segment.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/Syphon.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/Syphon.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/Syphon.framework/Syphon: -------------------------------------------------------------------------------- 1 | Versions/Current/Syphon -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/Syphon.framework/Versions/A/Headers/Syphon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/Syphon.framework/Versions/A/Headers/Syphon.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Frameworks/Syphon.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Info.plist -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/MacOS/cyril: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/MacOS/cyril -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Resources/.gitignore -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Resources/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Resources/DroidSansMono.ttf -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Resources/cyril-logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Resources/cyril-logo.icns -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Resources/ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Resources/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Resources/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Resources/readme.md -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Resources/screenshot.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Resources/screenshot_godray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Resources/screenshot_godray.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6.app/Contents/Resources/screenshot_toon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6.app/Contents/Resources/screenshot_toon.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/port.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/segment.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/Syphon.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/Syphon.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/Syphon.framework/Syphon: -------------------------------------------------------------------------------- 1 | Versions/Current/Syphon -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Frameworks/Syphon.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Info.plist -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/MacOS/cyril: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/MacOS/cyril -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Resources/.gitignore -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Resources/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Resources/DroidSansMono.ttf -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Resources/cyril-logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Resources/cyril-logo.icns -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Resources/ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Resources/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Resources/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Resources/readme.md -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Resources/screenshot.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Resources/screenshot_godray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Resources/screenshot_godray.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_beta6other.app/Contents/Resources/screenshot_toon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_beta6other.app/Contents/Resources/screenshot_toon.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/port.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/segment.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/Syphon.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/Syphon.framework/Syphon: -------------------------------------------------------------------------------- 1 | Versions/Current/Syphon -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Frameworks/Syphon.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Info.plist -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/MacOS/cyril: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/MacOS/cyril -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/.gitignore -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/Doxyfile -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/DroidSansMono.ttf -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/License.txt -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/addon_config.mk -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/cyril-logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/cyril-logo.icns -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/readme.md -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/screenshot.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/screenshot_godray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/screenshot_godray.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_kotutku.app/Contents/Resources/screenshot_toon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_kotutku.app/Contents/Resources/screenshot_toon.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/port.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/segment.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Syphon: -------------------------------------------------------------------------------- 1 | Versions/Current/Syphon -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Info.plist -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/MacOS/cyril: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/MacOS/cyril -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/.gitignore -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/Doxyfile -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/DroidSansMono.ttf -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/License.txt -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/README.md -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/addon_config.mk -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/cyril-logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/cyril-logo.icns -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/screenshot.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/screenshot_godray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/screenshot_godray.png -------------------------------------------------------------------------------- /Cyril/builds/cyril_syphon.app/Contents/Resources/screenshot_toon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/builds/cyril_syphon.app/Contents/Resources/screenshot_toon.png -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/GLUT -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glsmapint.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutbitmap.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutf90.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/glutstroke.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/intersect.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/port.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/segment.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/tube_gc.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Headers/vvector.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/Caution.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/Info.plist -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/blankCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/bottomCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/bottomleftCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/bottomrightCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/crossCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/cycleCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/destroyCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/fingerCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/helpCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/leftCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/leftRightCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/rightArrowCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/rightCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/sprayCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/topCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/topleftCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/toprightCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/upDownCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Resources/waitCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/GLUT -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glsmapint.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutbitmap.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutf90.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/glutstroke.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/intersect.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/port.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/segment.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/tube_gc.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Headers/vvector.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Caution.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/A/Resources/topCursor.tiff -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/GLUT -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/copy.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/extrude.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glsmap.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glut.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/glutf90.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/gutil.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/port.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/rot.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/segment.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/tube_gc.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/GLUT.framework/Versions/Current/Headers/vvector.h -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Syphon: -------------------------------------------------------------------------------- 1 | Versions/Current/Syphon -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Versions/A/Syphon -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Frameworks/Syphon.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Info.plist -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/MacOS/cyril: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/MacOS/cyril -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/MacOS/libfmodex.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/MacOS/libfmodex.dylib -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/.gitignore -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/Doxyfile -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/DroidSansMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/DroidSansMono.ttf -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/License.txt -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/README.md -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/addon_config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/addon_config.mk -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/cyril-logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/cyril-logo.icns -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/icon.icns -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/ofxaddons_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/ofxaddons_thumbnail.png -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/screenshot.png -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/screenshot_godray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/screenshot_godray.png -------------------------------------------------------------------------------- /Cyril/cyril_syphon.app/Contents/Resources/screenshot_toon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/cyril_syphon.app/Contents/Resources/screenshot_toon.png -------------------------------------------------------------------------------- /Cyril/data/code_default/0.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_default/0.cy -------------------------------------------------------------------------------- /Cyril/data/code_default/1.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_default/1.cy -------------------------------------------------------------------------------- /Cyril/data/code_default/2.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_default/2.cy -------------------------------------------------------------------------------- /Cyril/data/code_default/3.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_default/3.cy -------------------------------------------------------------------------------- /Cyril/data/code_default/4.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_default/4.cy -------------------------------------------------------------------------------- /Cyril/data/code_default/5.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_default/5.cy -------------------------------------------------------------------------------- /Cyril/data/code_default/6.cy: -------------------------------------------------------------------------------- 1 | 2 | noFill 3 | color hotPink 4 | do 4 times 5 | rotate FRAME / 4 6 | box 4 7 | end 8 | -------------------------------------------------------------------------------- /Cyril/data/code_default/7.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_default/7.cy -------------------------------------------------------------------------------- /Cyril/data/code_default/8.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_default/8.cy -------------------------------------------------------------------------------- /Cyril/data/code_default/9.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_default/9.cy -------------------------------------------------------------------------------- /Cyril/data/code_empty/0.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_empty/1.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_empty/2.cy: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Cyril/data/code_empty/3.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_empty/4.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_empty/5.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_empty/6.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_empty/7.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_empty/8.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_empty/9.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_experiments/0.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/0.cy -------------------------------------------------------------------------------- /Cyril/data/code_experiments/1.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/1.cy -------------------------------------------------------------------------------- /Cyril/data/code_experiments/2.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/2.cy -------------------------------------------------------------------------------- /Cyril/data/code_experiments/3.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/3.cy -------------------------------------------------------------------------------- /Cyril/data/code_experiments/4.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/4.cy -------------------------------------------------------------------------------- /Cyril/data/code_experiments/5.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/5.cy -------------------------------------------------------------------------------- /Cyril/data/code_experiments/6.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/6.cy -------------------------------------------------------------------------------- /Cyril/data/code_experiments/7.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/7.cy -------------------------------------------------------------------------------- /Cyril/data/code_experiments/8.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/8.cy -------------------------------------------------------------------------------- /Cyril/data/code_experiments/9.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_experiments/9.cy -------------------------------------------------------------------------------- /Cyril/data/code_horizon/0.cy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Cyril/data/code_horizon/1.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_horizon/2.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_horizon/2.cy -------------------------------------------------------------------------------- /Cyril/data/code_horizon/3.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_horizon/3.cy -------------------------------------------------------------------------------- /Cyril/data/code_horizon/4.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_horizon/4.cy -------------------------------------------------------------------------------- /Cyril/data/code_horizon/5.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_horizon/6.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_horizon/7.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_horizon/7.cy -------------------------------------------------------------------------------- /Cyril/data/code_horizon/8.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_horizon/8.cy -------------------------------------------------------------------------------- /Cyril/data/code_horizon/9.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_old/0.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_old/0.cy -------------------------------------------------------------------------------- /Cyril/data/code_old/1.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_old/1.cy -------------------------------------------------------------------------------- /Cyril/data/code_old/2.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_old/2.cy -------------------------------------------------------------------------------- /Cyril/data/code_old/3.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_old/3.cy -------------------------------------------------------------------------------- /Cyril/data/code_old/4.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_old/4.cy -------------------------------------------------------------------------------- /Cyril/data/code_old/5.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_old/5.cy -------------------------------------------------------------------------------- /Cyril/data/code_old/6.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_old/7.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_old/7.cy -------------------------------------------------------------------------------- /Cyril/data/code_old/8.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_old/8.cy -------------------------------------------------------------------------------- /Cyril/data/code_old/9.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_old/9.cy -------------------------------------------------------------------------------- /Cyril/data/code_performance1/0.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_performance1/1.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_performance1/1.cy -------------------------------------------------------------------------------- /Cyril/data/code_performance1/2.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_performance1/2.cy -------------------------------------------------------------------------------- /Cyril/data/code_performance1/3.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_performance1/3.cy -------------------------------------------------------------------------------- /Cyril/data/code_performance1/4.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_performance1/4.cy -------------------------------------------------------------------------------- /Cyril/data/code_performance1/5.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_performance1/5.cy -------------------------------------------------------------------------------- /Cyril/data/code_performance1/6.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_performance1/7.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_performance1/8.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_performance1/9.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_retro/0.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_retro/1.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_retro/1.cy -------------------------------------------------------------------------------- /Cyril/data/code_retro/2.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_retro/2.cy -------------------------------------------------------------------------------- /Cyril/data/code_retro/3.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_retro/3.cy -------------------------------------------------------------------------------- /Cyril/data/code_retro/4.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_retro/4.cy -------------------------------------------------------------------------------- /Cyril/data/code_retro/5.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_retro/5.cy -------------------------------------------------------------------------------- /Cyril/data/code_retro/6.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_retro/6.cy -------------------------------------------------------------------------------- /Cyril/data/code_retro/7.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/code_retro/8.cy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/code_retro/8.cy -------------------------------------------------------------------------------- /Cyril/data/code_retro/9.cy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Cyril/data/sprites/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/sprites/1.png -------------------------------------------------------------------------------- /Cyril/data/sprites/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Cyril/data/sprites/6.png -------------------------------------------------------------------------------- /KodeLife/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/README.md -------------------------------------------------------------------------------- /KodeLife/_docs/checkers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/_docs/checkers.png -------------------------------------------------------------------------------- /KodeLife/_docs/checkers_disorted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/_docs/checkers_disorted.png -------------------------------------------------------------------------------- /KodeLife/_docs/coordinates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/_docs/coordinates.png -------------------------------------------------------------------------------- /KodeLife/_docs/pseudoGlitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/_docs/pseudoGlitch.png -------------------------------------------------------------------------------- /KodeLife/_docs/zigzag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/_docs/zigzag.png -------------------------------------------------------------------------------- /KodeLife/assets/artificial-photography-147671-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/assets/artificial-photography-147671-unsplash.jpg -------------------------------------------------------------------------------- /KodeLife/checkers.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/checkers.frag -------------------------------------------------------------------------------- /KodeLife/checkers_disorted.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/checkers_disorted.frag -------------------------------------------------------------------------------- /KodeLife/coordinates.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/coordinates.frag -------------------------------------------------------------------------------- /KodeLife/pseudoGlitch.klproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/pseudoGlitch.klproj -------------------------------------------------------------------------------- /KodeLife/zigzag.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/KodeLife/zigzag.frag -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/LICENSE -------------------------------------------------------------------------------- /Processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/README.md -------------------------------------------------------------------------------- /Processing/_docs/hacking.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/_docs/hacking.png -------------------------------------------------------------------------------- /Processing/hacking/data/Inconsolata-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/data/Inconsolata-Regular.ttf -------------------------------------------------------------------------------- /Processing/hacking/data/code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/data/code.txt -------------------------------------------------------------------------------- /Processing/hacking/data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/data/test.txt -------------------------------------------------------------------------------- /Processing/hacking/hacking.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/hacking.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics-without-comments/oscP5parse/oscP5parse.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics-without-comments/oscP5parse/oscP5parse.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics-without-comments/oscP5plug/oscP5plug.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics-without-comments/oscP5plug/oscP5plug.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics-without-comments/oscP5send/oscP5send.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics-without-comments/oscP5send/oscP5send.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics/oscP5bundle/oscP5bundle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics/oscP5bundle/oscP5bundle.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics/oscP5listener/oscP5listener.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics/oscP5listener/oscP5listener.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics/oscP5parse/oscP5parse.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics/oscP5parse/oscP5parse.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics/oscP5plug/oscP5plug.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics/oscP5plug/oscP5plug.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics/oscP5properties/oscP5properties.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics/oscP5properties/oscP5properties.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics/oscP5receive/oscP5receive.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics/oscP5receive/oscP5receive.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/basics/oscP5send/oscP5send.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/basics/oscP5send/oscP5send.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5broadcaster/oscP5broadcaster.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5broadcaster/oscP5broadcaster.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5bundle/oscP5bundle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5bundle/oscP5bundle.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5flush/oscP5flush.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5flush/oscP5flush.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5message/oscP5message.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5message/oscP5message.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5multicast/oscP5multicast.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5multicast/oscP5multicast.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5oscArgument/oscP5oscArgument.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5oscArgument/oscP5oscArgument.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5parsing/oscP5parsing.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5parsing/oscP5parsing.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5plug/oscP5plug.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5plug/oscP5plug.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5properties/oscP5properties.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5properties/oscP5properties.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5sendReceive/oscP5sendReceive.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5sendReceive/oscP5sendReceive.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/examples/legacy/oscP5tcp/oscP5tcp.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/examples/legacy/oscP5tcp/oscP5tcp.pde -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/library.properties -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/library/oscP5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/library/oscP5.jar -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/allclasses-frame.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/allclasses-noframe.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/constant-values.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/help-doc.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/index-all.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/index.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/Bytes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/Bytes.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/Multicast.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/Multicast.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/NetAddress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/NetAddress.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/NetInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/NetInfo.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/NetP5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/NetP5.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/TcpClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/TcpClient.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/TcpServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/TcpServer.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/Transmitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/Transmitter.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/UdpClient.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/UdpClient.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/UdpServer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/UdpServer.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/package-frame.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/package-summary.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/netP5/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/netP5/package-tree.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/OscArgument.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/OscArgument.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/OscBundle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/OscBundle.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/OscEventListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/OscEventListener.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/OscMessage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/OscMessage.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/OscP5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/OscP5.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/OscPacket.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/OscPacket.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/OscPatcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/OscPatcher.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/OscPlug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/OscPlug.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/OscProperties.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/OscProperties.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/package-frame.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/package-summary.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/oscP5/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/oscP5/package-tree.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/overview-frame.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/overview-summary.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/overview-tree.html -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/package-list: -------------------------------------------------------------------------------- 1 | netP5 2 | oscP5 3 | -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/script.js -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/reference/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/reference/stylesheet.css -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/Bytes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/Bytes.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/Multicast.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/Multicast.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/NetAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/NetAddress.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/NetAddressList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/NetAddressList.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/NetInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/NetInfo.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/NetP5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/NetP5.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/TcpClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/TcpClient.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/TcpServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/TcpServer.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/Transmitter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/Transmitter.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/UdpClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/UdpClient.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/netP5/UdpServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/netP5/UdpServer.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscArgument.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscArgument.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscBundle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscBundle.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscEventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscEventListener.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscMessage.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscP5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscP5.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscPacket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscPacket.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscPatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscPatcher.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscPlug.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscPlug.java -------------------------------------------------------------------------------- /Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscProperties.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Processing/hacking/libraries/oscP5/src/main/java/oscP5/OscProperties.java -------------------------------------------------------------------------------- /QuartzComposer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/QuartzComposer/README.md -------------------------------------------------------------------------------- /QuartzComposer/_docs/cube_wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/QuartzComposer/_docs/cube_wall.png -------------------------------------------------------------------------------- /QuartzComposer/_docs/double_helix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/QuartzComposer/_docs/double_helix.png -------------------------------------------------------------------------------- /QuartzComposer/_docs/quack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/QuartzComposer/_docs/quack.png -------------------------------------------------------------------------------- /QuartzComposer/_docs/stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/QuartzComposer/_docs/stripes.png -------------------------------------------------------------------------------- /QuartzComposer/cube_wall.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/QuartzComposer/cube_wall.qtz -------------------------------------------------------------------------------- /QuartzComposer/double_helix.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/QuartzComposer/double_helix.qtz -------------------------------------------------------------------------------- /QuartzComposer/quack.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/QuartzComposer/quack.qtz -------------------------------------------------------------------------------- /QuartzComposer/stripes.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/QuartzComposer/stripes.qtz -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/README.md -------------------------------------------------------------------------------- /TouchDesigner/Assets/Freepbr marble-speckled-albedo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Freepbr marble-speckled-albedo.png -------------------------------------------------------------------------------- /TouchDesigner/Assets/Freepbr marble-speckled-metalness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Freepbr marble-speckled-metalness.png -------------------------------------------------------------------------------- /TouchDesigner/Assets/Freepbr marble-speckled-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Freepbr marble-speckled-normal.png -------------------------------------------------------------------------------- /TouchDesigner/Assets/Mixamo Falling.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Mixamo Falling.fbx -------------------------------------------------------------------------------- /TouchDesigner/Assets/Mixamo Ymca Dance.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Mixamo Ymca Dance.fbx -------------------------------------------------------------------------------- /TouchDesigner/Assets/Poly Dolphin.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Poly Dolphin.mtl -------------------------------------------------------------------------------- /TouchDesigner/Assets/Poly Dolphin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Poly Dolphin.obj -------------------------------------------------------------------------------- /TouchDesigner/Assets/Poly Dolphin_BaseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Poly Dolphin_BaseColor.png -------------------------------------------------------------------------------- /TouchDesigner/Assets/Threedscans Nymph.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Threedscans Nymph.fbx -------------------------------------------------------------------------------- /TouchDesigner/Assets/Threedscans Nymph_curvature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Threedscans Nymph_curvature.png -------------------------------------------------------------------------------- /TouchDesigner/Assets/Threedscans Nymph_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Threedscans Nymph_normals.png -------------------------------------------------------------------------------- /TouchDesigner/Assets/Threedscans Nymph_occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Threedscans Nymph_occlusion.png -------------------------------------------------------------------------------- /TouchDesigner/Assets/Threedscans helios.fbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Threedscans helios.fbx -------------------------------------------------------------------------------- /TouchDesigner/Assets/Threedscans helios_norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Threedscans helios_norm.png -------------------------------------------------------------------------------- /TouchDesigner/Assets/Threedscans helios_occlusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/Threedscans helios_occlusion.png -------------------------------------------------------------------------------- /TouchDesigner/Assets/ZByg studio018.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/ZByg studio018.hdr -------------------------------------------------------------------------------- /TouchDesigner/Assets/ZByg studio022.hdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/ZByg studio022.hdr -------------------------------------------------------------------------------- /TouchDesigner/Assets/depth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Assets/depth.png -------------------------------------------------------------------------------- /TouchDesigner/Import/Mixamo_Falling/Chan/Take_001.bchan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Import/Mixamo_Falling/Chan/Take_001.bchan -------------------------------------------------------------------------------- /TouchDesigner/Import/Mixamo_Falling/Chan/mixamo_com.bchan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Import/Mixamo_Falling/Chan/mixamo_com.bchan -------------------------------------------------------------------------------- /TouchDesigner/Import/Mixamo_Falling/Geo/Alpha_Joints.tog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Import/Mixamo_Falling/Geo/Alpha_Joints.tog -------------------------------------------------------------------------------- /TouchDesigner/Import/Mixamo_Falling/Geo/Alpha_Surface.tog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Import/Mixamo_Falling/Geo/Alpha_Surface.tog -------------------------------------------------------------------------------- /TouchDesigner/Import/Threedscans_Nymph/Geo/Nymph.tog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Import/Threedscans_Nymph/Geo/Nymph.tog -------------------------------------------------------------------------------- /TouchDesigner/Import/Threedscans_helios/Geo/Helios_decimated_005.tog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/Import/Threedscans_helios/Geo/Helios_decimated_005.tog -------------------------------------------------------------------------------- /TouchDesigner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/README.md -------------------------------------------------------------------------------- /TouchDesigner/_docs/acid_shapes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/acid_shapes.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/camera_gamecontroller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/camera_gamecontroller.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/dancing_polygons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/dancing_polygons.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/deferred_lights_rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/deferred_lights_rain.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/feedback_scroll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/feedback_scroll.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/flying_stuff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/flying_stuff.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glamour_workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glamour_workshop.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_ball_vertex_extrude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_ball_vertex_extrude.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_deform_keep_normals.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_deform_keep_normals.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_hexagons_on_triangles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_hexagons_on_triangles.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_hyperspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_hyperspace.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_instance_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_instance_resize.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_lowpoly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_lowpoly.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_lowpoly_displace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_lowpoly_displace.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_mirror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_mirror.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_spikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_spikes.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_stripes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_stripes.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_strips_shader_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_strips_shader_box.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/glsl_voxelize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/glsl_voxelize.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/grid_texture_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/grid_texture_control.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/hyperspace_fall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/hyperspace_fall.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/loop_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/loop_test.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/molecules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/molecules.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/motion_blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/motion_blur.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/new_year_counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/new_year_counter.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/pillar_explosions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/pillar_explosions.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/render_helios_pbr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/render_helios_pbr.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/synthwave_pyramid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/synthwave_pyramid.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/text_3d_instances.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/text_3d_instances.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/tunnel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/tunnel.png -------------------------------------------------------------------------------- /TouchDesigner/_docs/zigzags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/_docs/zigzags.png -------------------------------------------------------------------------------- /TouchDesigner/acid_shapes.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/acid_shapes.toe -------------------------------------------------------------------------------- /TouchDesigner/camera_gamecontroller.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/camera_gamecontroller.toe -------------------------------------------------------------------------------- /TouchDesigner/dancing_polygons.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/dancing_polygons.toe -------------------------------------------------------------------------------- /TouchDesigner/deferred_lights_rain.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/deferred_lights_rain.toe -------------------------------------------------------------------------------- /TouchDesigner/feedback_scroll.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/feedback_scroll.toe -------------------------------------------------------------------------------- /TouchDesigner/flying_stuff.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/flying_stuff.toe -------------------------------------------------------------------------------- /TouchDesigner/glamour_workshop.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glamour_workshop.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_ball_vertex_extrude.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_ball_vertex_extrude.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_deform_keep_normals.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_deform_keep_normals.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_hexagons_on_triangles.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_hexagons_on_triangles.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_hyperspace.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_hyperspace.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_instance_resize.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_instance_resize.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_lowpoly.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_lowpoly.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_lowpoly_displace.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_lowpoly_displace.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_mirror.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_mirror.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_spikes.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_spikes.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_stripes.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_stripes.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_strips_shader_box.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_strips_shader_box.toe -------------------------------------------------------------------------------- /TouchDesigner/glsl_voxelize.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/glsl_voxelize.toe -------------------------------------------------------------------------------- /TouchDesigner/grid_texture_control.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/grid_texture_control.toe -------------------------------------------------------------------------------- /TouchDesigner/hyperspace_fall.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/hyperspace_fall.toe -------------------------------------------------------------------------------- /TouchDesigner/kinect_basic.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/kinect_basic.toe -------------------------------------------------------------------------------- /TouchDesigner/kinect_basic_nocolor.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/kinect_basic_nocolor.toe -------------------------------------------------------------------------------- /TouchDesigner/kinect_blob_track.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/kinect_blob_track.toe -------------------------------------------------------------------------------- /TouchDesigner/kinect_wall_detection.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/kinect_wall_detection.toe -------------------------------------------------------------------------------- /TouchDesigner/kinect_wall_hit_detection.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/kinect_wall_hit_detection.toe -------------------------------------------------------------------------------- /TouchDesigner/loop_test.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/loop_test.toe -------------------------------------------------------------------------------- /TouchDesigner/molecules.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/molecules.toe -------------------------------------------------------------------------------- /TouchDesigner/motion_blur.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/motion_blur.toe -------------------------------------------------------------------------------- /TouchDesigner/new_year_counter.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/new_year_counter.toe -------------------------------------------------------------------------------- /TouchDesigner/pillar_explosions.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/pillar_explosions.toe -------------------------------------------------------------------------------- /TouchDesigner/render_helios_pbr.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/render_helios_pbr.toe -------------------------------------------------------------------------------- /TouchDesigner/set_params_from_dat.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/set_params_from_dat.toe -------------------------------------------------------------------------------- /TouchDesigner/synthwave_pyramid.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/synthwave_pyramid.toe -------------------------------------------------------------------------------- /TouchDesigner/text_3d_instances.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/text_3d_instances.toe -------------------------------------------------------------------------------- /TouchDesigner/tunnel.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/tunnel.toe -------------------------------------------------------------------------------- /TouchDesigner/zigzags.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/TouchDesigner/zigzags.toe -------------------------------------------------------------------------------- /Vuo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/LICENSE -------------------------------------------------------------------------------- /Vuo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/README.md -------------------------------------------------------------------------------- /Vuo/_docs/CheckerboardTunnel.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/CheckerboardTunnel.gen.png -------------------------------------------------------------------------------- /Vuo/_docs/FirstPersonMovement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/FirstPersonMovement.png -------------------------------------------------------------------------------- /Vuo/_docs/FutureCity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/FutureCity.png -------------------------------------------------------------------------------- /Vuo/_docs/HandheldCameraMoving.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/HandheldCameraMoving.png -------------------------------------------------------------------------------- /Vuo/_docs/HandheltCameraParameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/HandheltCameraParameters.png -------------------------------------------------------------------------------- /Vuo/_docs/MultipleMovingGraphics.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/MultipleMovingGraphics.gen.png -------------------------------------------------------------------------------- /Vuo/_docs/OccultRotator.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/OccultRotator.gen.png -------------------------------------------------------------------------------- /Vuo/_docs/OscTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/OscTest.png -------------------------------------------------------------------------------- /Vuo/_docs/Random3DObjects.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/Random3DObjects.gen.png -------------------------------------------------------------------------------- /Vuo/_docs/RetroBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/RetroBox.png -------------------------------------------------------------------------------- /Vuo/_docs/Synthwave.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/Synthwave.gen.png -------------------------------------------------------------------------------- /Vuo/_docs/TerrainTravel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/TerrainTravel.png -------------------------------------------------------------------------------- /Vuo/_docs/TerrainTravel2.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/TerrainTravel2.gen.png -------------------------------------------------------------------------------- /Vuo/_docs/Text3DGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/Text3DGrid.png -------------------------------------------------------------------------------- /Vuo/_docs/TriangleRipple.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/TriangleRipple.gen.png -------------------------------------------------------------------------------- /Vuo/_docs/TunnelGrid.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/TunnelGrid.gen.png -------------------------------------------------------------------------------- /Vuo/_docs/TunnelGridTile.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/TunnelGridTile.gen.png -------------------------------------------------------------------------------- /Vuo/_docs/VHStext.gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/_docs/VHStext.gen.png -------------------------------------------------------------------------------- /Vuo/assets/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/assets/dog.jpg -------------------------------------------------------------------------------- /Vuo/assets/pentagram_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/assets/pentagram_black.png -------------------------------------------------------------------------------- /Vuo/assets/pentagram_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/assets/pentagram_white.png -------------------------------------------------------------------------------- /Vuo/compositions/CheckerboardTunnel.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/CheckerboardTunnel.gen.vuo -------------------------------------------------------------------------------- /Vuo/compositions/FirstPersonMovement.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/FirstPersonMovement.vuo -------------------------------------------------------------------------------- /Vuo/compositions/FutureCity.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/FutureCity.vuo -------------------------------------------------------------------------------- /Vuo/compositions/OscTest.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/OscTest.vuo -------------------------------------------------------------------------------- /Vuo/compositions/Random3DObjects.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/Random3DObjects.vuo -------------------------------------------------------------------------------- /Vuo/compositions/RetroBox.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/RetroBox.vuo -------------------------------------------------------------------------------- /Vuo/compositions/Synthwave.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/Synthwave.gen.vuo -------------------------------------------------------------------------------- /Vuo/compositions/TerrainTravel.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/TerrainTravel.vuo -------------------------------------------------------------------------------- /Vuo/compositions/TerrainTravel2.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/TerrainTravel2.gen.vuo -------------------------------------------------------------------------------- /Vuo/compositions/TunnelGrid.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/TunnelGrid.gen.vuo -------------------------------------------------------------------------------- /Vuo/compositions/TunnelGridTile.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/compositions/TunnelGridTile.gen.vuo -------------------------------------------------------------------------------- /Vuo/generators/HandheldCameraMoving.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/generators/HandheldCameraMoving.gen.vuo -------------------------------------------------------------------------------- /Vuo/generators/HandheltCameraParameters.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/generators/HandheltCameraParameters.gen.vuo -------------------------------------------------------------------------------- /Vuo/generators/MultipleMovingGraphics.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/generators/MultipleMovingGraphics.gen.vuo -------------------------------------------------------------------------------- /Vuo/generators/OccultRotator.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/generators/OccultRotator.gen.vuo -------------------------------------------------------------------------------- /Vuo/generators/Text3DGrid.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/generators/Text3DGrid.vuo -------------------------------------------------------------------------------- /Vuo/generators/TriangleRipple.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/generators/TriangleRipple.gen.vuo -------------------------------------------------------------------------------- /Vuo/generators/VHStext.gen.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/generators/VHStext.gen.vuo -------------------------------------------------------------------------------- /Vuo/nodes/marcin.10carsOnPathWithGenerator.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/nodes/marcin.10carsOnPathWithGenerator.vuo -------------------------------------------------------------------------------- /Vuo/nodes/marcin.cameraFollowPath.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/nodes/marcin.cameraFollowPath.vuo -------------------------------------------------------------------------------- /Vuo/nodes/marcin.carOnPathWithGenerator.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/nodes/marcin.carOnPathWithGenerator.vuo -------------------------------------------------------------------------------- /Vuo/nodes/marcin.perpendicularPath.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/nodes/marcin.perpendicularPath.vuo -------------------------------------------------------------------------------- /Vuo/nodes/marcin.randomMovement.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/nodes/marcin.randomMovement.vuo -------------------------------------------------------------------------------- /Vuo/nodes/randomMovementGlitched.vuo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/Vuo/nodes/randomMovementGlitched.vuo -------------------------------------------------------------------------------- /readme.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/readme.rb -------------------------------------------------------------------------------- /readme.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/readme.yml -------------------------------------------------------------------------------- /readme_build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/readme_build.rb -------------------------------------------------------------------------------- /readme_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcinbiegun/creativecoding-sketches/HEAD/readme_test.rb --------------------------------------------------------------------------------