├── .gitignore ├── README.md ├── demo.html ├── favicon.ico ├── index.html ├── js ├── CCapture.js ├── CubemapToEquirectangular.js ├── OrbitControls.js ├── TrackballControls.js ├── download.js ├── j360.js ├── tar.js └── three.min.js ├── screencap.jpg ├── screencap2.jpg └── textures ├── SwedishRoyalCastle ├── nx.jpg ├── ny.jpg ├── nz.jpg ├── px.jpg ├── py.jpg ├── pz.jpg └── readme.txt ├── behind.png ├── bottom.png ├── bright_squares256.png ├── disturb.jpg ├── front.png ├── lavatile.jpg ├── left.png ├── right.png ├── sittingBox.js ├── top.png └── uvgrid01.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | captures/ 2 | tools/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/README.md -------------------------------------------------------------------------------- /demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/demo.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/index.html -------------------------------------------------------------------------------- /js/CCapture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/js/CCapture.js -------------------------------------------------------------------------------- /js/CubemapToEquirectangular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/js/CubemapToEquirectangular.js -------------------------------------------------------------------------------- /js/OrbitControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/js/OrbitControls.js -------------------------------------------------------------------------------- /js/TrackballControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/js/TrackballControls.js -------------------------------------------------------------------------------- /js/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/js/download.js -------------------------------------------------------------------------------- /js/j360.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/js/j360.js -------------------------------------------------------------------------------- /js/tar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/js/tar.js -------------------------------------------------------------------------------- /js/three.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/js/three.min.js -------------------------------------------------------------------------------- /screencap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/screencap.jpg -------------------------------------------------------------------------------- /screencap2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/screencap2.jpg -------------------------------------------------------------------------------- /textures/SwedishRoyalCastle/nx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/SwedishRoyalCastle/nx.jpg -------------------------------------------------------------------------------- /textures/SwedishRoyalCastle/ny.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/SwedishRoyalCastle/ny.jpg -------------------------------------------------------------------------------- /textures/SwedishRoyalCastle/nz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/SwedishRoyalCastle/nz.jpg -------------------------------------------------------------------------------- /textures/SwedishRoyalCastle/px.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/SwedishRoyalCastle/px.jpg -------------------------------------------------------------------------------- /textures/SwedishRoyalCastle/py.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/SwedishRoyalCastle/py.jpg -------------------------------------------------------------------------------- /textures/SwedishRoyalCastle/pz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/SwedishRoyalCastle/pz.jpg -------------------------------------------------------------------------------- /textures/SwedishRoyalCastle/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/SwedishRoyalCastle/readme.txt -------------------------------------------------------------------------------- /textures/behind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/behind.png -------------------------------------------------------------------------------- /textures/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/bottom.png -------------------------------------------------------------------------------- /textures/bright_squares256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/bright_squares256.png -------------------------------------------------------------------------------- /textures/disturb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/disturb.jpg -------------------------------------------------------------------------------- /textures/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/front.png -------------------------------------------------------------------------------- /textures/lavatile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/lavatile.jpg -------------------------------------------------------------------------------- /textures/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/left.png -------------------------------------------------------------------------------- /textures/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/right.png -------------------------------------------------------------------------------- /textures/sittingBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/sittingBox.js -------------------------------------------------------------------------------- /textures/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/top.png -------------------------------------------------------------------------------- /textures/uvgrid01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imgntn/j360/HEAD/textures/uvgrid01.jpg --------------------------------------------------------------------------------