├── .gitignore ├── README.md ├── package.json ├── public ├── 192.png ├── aframe-components │ ├── aframe-overunder-component.js │ └── aframe-stereocam-component.js ├── favicon.png ├── global.css └── index.html ├── rollup.config.js ├── src ├── App.svelte ├── components │ ├── DragAndDrop.svelte │ ├── GithubCorner.svelte │ ├── Instructions.svelte │ └── Scene.svelte ├── main.js └── utils │ ├── Window.ts │ └── isObjectUrl.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /public/build/ 3 | 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/package.json -------------------------------------------------------------------------------- /public/192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/public/192.png -------------------------------------------------------------------------------- /public/aframe-components/aframe-overunder-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/public/aframe-components/aframe-overunder-component.js -------------------------------------------------------------------------------- /public/aframe-components/aframe-stereocam-component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/public/aframe-components/aframe-stereocam-component.js -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/public/global.css -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/public/index.html -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/src/App.svelte -------------------------------------------------------------------------------- /src/components/DragAndDrop.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/src/components/DragAndDrop.svelte -------------------------------------------------------------------------------- /src/components/GithubCorner.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/src/components/GithubCorner.svelte -------------------------------------------------------------------------------- /src/components/Instructions.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/src/components/Instructions.svelte -------------------------------------------------------------------------------- /src/components/Scene.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/src/components/Scene.svelte -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/src/main.js -------------------------------------------------------------------------------- /src/utils/Window.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/src/utils/Window.ts -------------------------------------------------------------------------------- /src/utils/isObjectUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/src/utils/isObjectUrl.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bryik/stereo-panorama-viewer/HEAD/tsconfig.json --------------------------------------------------------------------------------