├── .gitignore ├── LICENSE ├── Makefile ├── Project.xcconfig ├── README.md ├── addons.make ├── bin └── data │ ├── .gitkeep │ └── shaders │ ├── gl2 │ └── equirectanguler.frag │ └── gl3 │ ├── equirectanguler.frag │ └── equirectanguler.vert ├── config.make ├── openFrameworks-Info.plist └── src ├── main.cpp ├── ofApp.cpp └── ofApp.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/Makefile -------------------------------------------------------------------------------- /Project.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/Project.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/README.md -------------------------------------------------------------------------------- /addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/addons.make -------------------------------------------------------------------------------- /bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bin/data/shaders/gl2/equirectanguler.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/bin/data/shaders/gl2/equirectanguler.frag -------------------------------------------------------------------------------- /bin/data/shaders/gl3/equirectanguler.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/bin/data/shaders/gl3/equirectanguler.frag -------------------------------------------------------------------------------- /bin/data/shaders/gl3/equirectanguler.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/bin/data/shaders/gl3/equirectanguler.vert -------------------------------------------------------------------------------- /config.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/config.make -------------------------------------------------------------------------------- /openFrameworks-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/openFrameworks-Info.plist -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/src/ofApp.cpp -------------------------------------------------------------------------------- /src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yasuhirohoshino/oF-thetaEquirectangular/HEAD/src/ofApp.h --------------------------------------------------------------------------------