├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── gulpfile.js ├── img └── box.png ├── index.html ├── libs ├── VRControls.js ├── VREffect.js ├── three.js ├── three.min.js └── webvr-polyfill.js ├── npm-debug.log ├── package.json └── src ├── QuadMesh.js ├── ThreeSixtyFile.js ├── ThreeSixtyMaterial.js ├── index.js └── libs ├── FileSaver.min.js └── canvasToBlobPolyfill.js /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | img/ 2 | libs/ 3 | node_modules/ 4 | index.html 5 | gulpfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/gulpfile.js -------------------------------------------------------------------------------- /img/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/img/box.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/index.html -------------------------------------------------------------------------------- /libs/VRControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/libs/VRControls.js -------------------------------------------------------------------------------- /libs/VREffect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/libs/VREffect.js -------------------------------------------------------------------------------- /libs/three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/libs/three.js -------------------------------------------------------------------------------- /libs/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/libs/three.min.js -------------------------------------------------------------------------------- /libs/webvr-polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/libs/webvr-polyfill.js -------------------------------------------------------------------------------- /npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/npm-debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/package.json -------------------------------------------------------------------------------- /src/QuadMesh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/src/QuadMesh.js -------------------------------------------------------------------------------- /src/ThreeSixtyFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/src/ThreeSixtyFile.js -------------------------------------------------------------------------------- /src/ThreeSixtyMaterial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/src/ThreeSixtyMaterial.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/src/index.js -------------------------------------------------------------------------------- /src/libs/FileSaver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/src/libs/FileSaver.min.js -------------------------------------------------------------------------------- /src/libs/canvasToBlobPolyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ashconnell/three-sixty/HEAD/src/libs/canvasToBlobPolyfill.js --------------------------------------------------------------------------------