├── .gitignore ├── LICENSE.txt ├── README.md ├── images ├── 2d_preview_screenshot.JPG ├── cubemap_generator_screenshot.JPG ├── default_panorama.png ├── example_1.jpg ├── example_2.jpg ├── example_3.jpg ├── example_4.jpg ├── panorama_tools_ui_screenshot.jpg ├── reference_dot_grid.png ├── sketcher_example_output.jpg ├── sketcher_example_scribble.jpg ├── sketcher_ui_screenshot.jpg └── viewer_ui_screenshot.jpg ├── javascript ├── main.js ├── panorama_sketcher.js ├── panorama_viewer.js └── shader_view.js ├── scripts └── panorama-tools.py ├── shaders ├── default.vert ├── equirectangular_preview.frag ├── equirectangular_sketch.frag └── panorama_preview.frag └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/README.md -------------------------------------------------------------------------------- /images/2d_preview_screenshot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/2d_preview_screenshot.JPG -------------------------------------------------------------------------------- /images/cubemap_generator_screenshot.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/cubemap_generator_screenshot.JPG -------------------------------------------------------------------------------- /images/default_panorama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/default_panorama.png -------------------------------------------------------------------------------- /images/example_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/example_1.jpg -------------------------------------------------------------------------------- /images/example_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/example_2.jpg -------------------------------------------------------------------------------- /images/example_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/example_3.jpg -------------------------------------------------------------------------------- /images/example_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/example_4.jpg -------------------------------------------------------------------------------- /images/panorama_tools_ui_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/panorama_tools_ui_screenshot.jpg -------------------------------------------------------------------------------- /images/reference_dot_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/reference_dot_grid.png -------------------------------------------------------------------------------- /images/sketcher_example_output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/sketcher_example_output.jpg -------------------------------------------------------------------------------- /images/sketcher_example_scribble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/sketcher_example_scribble.jpg -------------------------------------------------------------------------------- /images/sketcher_ui_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/sketcher_ui_screenshot.jpg -------------------------------------------------------------------------------- /images/viewer_ui_screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/images/viewer_ui_screenshot.jpg -------------------------------------------------------------------------------- /javascript/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/javascript/main.js -------------------------------------------------------------------------------- /javascript/panorama_sketcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/javascript/panorama_sketcher.js -------------------------------------------------------------------------------- /javascript/panorama_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/javascript/panorama_viewer.js -------------------------------------------------------------------------------- /javascript/shader_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/javascript/shader_view.js -------------------------------------------------------------------------------- /scripts/panorama-tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/scripts/panorama-tools.py -------------------------------------------------------------------------------- /shaders/default.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/shaders/default.vert -------------------------------------------------------------------------------- /shaders/equirectangular_preview.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/shaders/equirectangular_preview.frag -------------------------------------------------------------------------------- /shaders/equirectangular_sketch.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/shaders/equirectangular_sketch.frag -------------------------------------------------------------------------------- /shaders/panorama_preview.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/shaders/panorama_preview.frag -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Flyguygx/sd-webui-panorama-tools/HEAD/style.css --------------------------------------------------------------------------------