├── .gitignore ├── 01_twoScreens ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── SmoothEdgeBlend.frag │ │ └── SmoothEdgeBlend.vert ├── openFrameworks-Info.plist ├── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── twoScreens.cbp ├── twoScreens.vcxproj ├── twoScreens.vcxproj.filters ├── twoScreens.vcxproj.user ├── twoScreens.workspace └── twoScreens.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ ├── twoScreens Debug.xcscheme │ └── twoScreens Release.xcscheme ├── 02_threeVertical ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ └── .gitkeep ├── openFrameworks-Info.plist ├── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── threeVertical.cbp ├── threeVertical.sln ├── threeVertical.vcxproj ├── threeVertical.vcxproj.filters ├── threeVertical.vcxproj.user ├── threeVertical.workspace └── threeVertical.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcschemes │ ├── threeVertical Debug.xcscheme │ └── threeVertical Release.xcscheme ├── 03_guiControls ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── _settings.xml ├── guiControls.cbp ├── guiControls.sln ├── guiControls.vcxproj ├── guiControls.vcxproj.filters ├── guiControls.vcxproj.user ├── guiControls.workspace ├── guiControls.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── guiControls Debug.xcscheme │ │ └── guiControls Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── 04_blendClown ├── Project.xcconfig ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── blendClown.png │ │ └── blendClown.psd ├── blendClown.cbp ├── blendClown.sln ├── blendClown.vcxproj ├── blendClown.vcxproj.filters ├── blendClown.vcxproj.user ├── blendClown.workspace ├── blendClown.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── blendClown Debug.xcscheme │ │ └── blendClown Release.xcscheme ├── openFrameworks-Info.plist └── src │ ├── main.cpp │ ├── testApp.cpp │ └── testApp.h ├── README.md └── src ├── ofxProjectorBlend.cpp ├── ofxProjectorBlend.h └── ofxProjectorBlendShader.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/.gitignore -------------------------------------------------------------------------------- /01_twoScreens/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/Project.xcconfig -------------------------------------------------------------------------------- /01_twoScreens/addons.make: -------------------------------------------------------------------------------- 1 | ofxProjectorBlend 2 | -------------------------------------------------------------------------------- /01_twoScreens/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /01_twoScreens/bin/data/SmoothEdgeBlend.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/bin/data/SmoothEdgeBlend.frag -------------------------------------------------------------------------------- /01_twoScreens/bin/data/SmoothEdgeBlend.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/bin/data/SmoothEdgeBlend.vert -------------------------------------------------------------------------------- /01_twoScreens/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/openFrameworks-Info.plist -------------------------------------------------------------------------------- /01_twoScreens/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/src/main.cpp -------------------------------------------------------------------------------- /01_twoScreens/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/src/testApp.cpp -------------------------------------------------------------------------------- /01_twoScreens/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/src/testApp.h -------------------------------------------------------------------------------- /01_twoScreens/twoScreens.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/twoScreens.cbp -------------------------------------------------------------------------------- /01_twoScreens/twoScreens.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/twoScreens.vcxproj -------------------------------------------------------------------------------- /01_twoScreens/twoScreens.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/twoScreens.vcxproj.filters -------------------------------------------------------------------------------- /01_twoScreens/twoScreens.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/twoScreens.vcxproj.user -------------------------------------------------------------------------------- /01_twoScreens/twoScreens.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/twoScreens.workspace -------------------------------------------------------------------------------- /01_twoScreens/twoScreens.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/twoScreens.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /01_twoScreens/twoScreens.xcodeproj/xcshareddata/xcschemes/twoScreens Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/twoScreens.xcodeproj/xcshareddata/xcschemes/twoScreens Debug.xcscheme -------------------------------------------------------------------------------- /01_twoScreens/twoScreens.xcodeproj/xcshareddata/xcschemes/twoScreens Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/01_twoScreens/twoScreens.xcodeproj/xcshareddata/xcschemes/twoScreens Release.xcscheme -------------------------------------------------------------------------------- /02_threeVertical/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/Project.xcconfig -------------------------------------------------------------------------------- /02_threeVertical/addons.make: -------------------------------------------------------------------------------- 1 | ofxProjectorBlend 2 | -------------------------------------------------------------------------------- /02_threeVertical/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /02_threeVertical/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/openFrameworks-Info.plist -------------------------------------------------------------------------------- /02_threeVertical/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/src/main.cpp -------------------------------------------------------------------------------- /02_threeVertical/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/src/testApp.cpp -------------------------------------------------------------------------------- /02_threeVertical/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/src/testApp.h -------------------------------------------------------------------------------- /02_threeVertical/threeVertical.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/threeVertical.cbp -------------------------------------------------------------------------------- /02_threeVertical/threeVertical.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/threeVertical.sln -------------------------------------------------------------------------------- /02_threeVertical/threeVertical.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/threeVertical.vcxproj -------------------------------------------------------------------------------- /02_threeVertical/threeVertical.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/threeVertical.vcxproj.filters -------------------------------------------------------------------------------- /02_threeVertical/threeVertical.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/threeVertical.vcxproj.user -------------------------------------------------------------------------------- /02_threeVertical/threeVertical.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/threeVertical.workspace -------------------------------------------------------------------------------- /02_threeVertical/threeVertical.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/threeVertical.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /02_threeVertical/threeVertical.xcodeproj/xcshareddata/xcschemes/threeVertical Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/threeVertical.xcodeproj/xcshareddata/xcschemes/threeVertical Debug.xcscheme -------------------------------------------------------------------------------- /02_threeVertical/threeVertical.xcodeproj/xcshareddata/xcschemes/threeVertical Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/02_threeVertical/threeVertical.xcodeproj/xcshareddata/xcschemes/threeVertical Release.xcscheme -------------------------------------------------------------------------------- /03_guiControls/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/Project.xcconfig -------------------------------------------------------------------------------- /03_guiControls/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/addons.make -------------------------------------------------------------------------------- /03_guiControls/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /03_guiControls/bin/data/_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/bin/data/_settings.xml -------------------------------------------------------------------------------- /03_guiControls/guiControls.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/guiControls.cbp -------------------------------------------------------------------------------- /03_guiControls/guiControls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/guiControls.sln -------------------------------------------------------------------------------- /03_guiControls/guiControls.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/guiControls.vcxproj -------------------------------------------------------------------------------- /03_guiControls/guiControls.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/guiControls.vcxproj.filters -------------------------------------------------------------------------------- /03_guiControls/guiControls.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/guiControls.vcxproj.user -------------------------------------------------------------------------------- /03_guiControls/guiControls.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/guiControls.workspace -------------------------------------------------------------------------------- /03_guiControls/guiControls.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/guiControls.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /03_guiControls/guiControls.xcodeproj/xcshareddata/xcschemes/guiControls Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/guiControls.xcodeproj/xcshareddata/xcschemes/guiControls Debug.xcscheme -------------------------------------------------------------------------------- /03_guiControls/guiControls.xcodeproj/xcshareddata/xcschemes/guiControls Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/guiControls.xcodeproj/xcshareddata/xcschemes/guiControls Release.xcscheme -------------------------------------------------------------------------------- /03_guiControls/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/openFrameworks-Info.plist -------------------------------------------------------------------------------- /03_guiControls/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/src/main.cpp -------------------------------------------------------------------------------- /03_guiControls/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/src/testApp.cpp -------------------------------------------------------------------------------- /03_guiControls/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/03_guiControls/src/testApp.h -------------------------------------------------------------------------------- /04_blendClown/Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/Project.xcconfig -------------------------------------------------------------------------------- /04_blendClown/addons.make: -------------------------------------------------------------------------------- 1 | ofxProjectorBlend 2 | -------------------------------------------------------------------------------- /04_blendClown/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04_blendClown/bin/data/blendClown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/bin/data/blendClown.png -------------------------------------------------------------------------------- /04_blendClown/bin/data/blendClown.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/bin/data/blendClown.psd -------------------------------------------------------------------------------- /04_blendClown/blendClown.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/blendClown.cbp -------------------------------------------------------------------------------- /04_blendClown/blendClown.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/blendClown.sln -------------------------------------------------------------------------------- /04_blendClown/blendClown.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/blendClown.vcxproj -------------------------------------------------------------------------------- /04_blendClown/blendClown.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/blendClown.vcxproj.filters -------------------------------------------------------------------------------- /04_blendClown/blendClown.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/blendClown.vcxproj.user -------------------------------------------------------------------------------- /04_blendClown/blendClown.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/blendClown.workspace -------------------------------------------------------------------------------- /04_blendClown/blendClown.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/blendClown.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /04_blendClown/blendClown.xcodeproj/xcshareddata/xcschemes/blendClown Debug.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/blendClown.xcodeproj/xcshareddata/xcschemes/blendClown Debug.xcscheme -------------------------------------------------------------------------------- /04_blendClown/blendClown.xcodeproj/xcshareddata/xcschemes/blendClown Release.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/blendClown.xcodeproj/xcshareddata/xcschemes/blendClown Release.xcscheme -------------------------------------------------------------------------------- /04_blendClown/openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/openFrameworks-Info.plist -------------------------------------------------------------------------------- /04_blendClown/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/src/main.cpp -------------------------------------------------------------------------------- /04_blendClown/src/testApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/src/testApp.cpp -------------------------------------------------------------------------------- /04_blendClown/src/testApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/04_blendClown/src/testApp.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/README.md -------------------------------------------------------------------------------- /src/ofxProjectorBlend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/src/ofxProjectorBlend.cpp -------------------------------------------------------------------------------- /src/ofxProjectorBlend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/src/ofxProjectorBlend.h -------------------------------------------------------------------------------- /src/ofxProjectorBlendShader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flightphase/ofxProjectorBlend/HEAD/src/ofxProjectorBlendShader.h --------------------------------------------------------------------------------