├── .bumpversion.toml ├── .gitignore ├── .python-version ├── .tags ├── git.project.tag ├── github.project.tag └── python.project.tag ├── .vscode └── launch.json ├── BUMPVER-GUIDE.md ├── README.md ├── VERSION ├── app ├── __init__.py ├── legacy │ ├── README.md │ ├── panorama_to_plane-gui.py │ └── panorama_to_plane.py └── panorama_to_plane-pitch.py ├── assets ├── GUI.png ├── pitch.png └── yaw.png ├── generate_executables.py ├── main.py ├── pyproject.toml ├── requirements.txt ├── script └── update-version.py ├── utils ├── __init__.py └── git-tag-push.py └── uv.lock /.bumpversion.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/.bumpversion.toml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /.tags/git.project.tag: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /.tags/github.project.tag: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /.tags/python.project.tag: -------------------------------------------------------------------------------- 1 | . -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /BUMPVER-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/BUMPVER-GUIDE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | "0.3.2" -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/legacy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/app/legacy/README.md -------------------------------------------------------------------------------- /app/legacy/panorama_to_plane-gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/app/legacy/panorama_to_plane-gui.py -------------------------------------------------------------------------------- /app/legacy/panorama_to_plane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/app/legacy/panorama_to_plane.py -------------------------------------------------------------------------------- /app/panorama_to_plane-pitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/app/panorama_to_plane-pitch.py -------------------------------------------------------------------------------- /assets/GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/assets/GUI.png -------------------------------------------------------------------------------- /assets/pitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/assets/pitch.png -------------------------------------------------------------------------------- /assets/yaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/assets/yaw.png -------------------------------------------------------------------------------- /generate_executables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/generate_executables.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/main.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/update-version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/script/update-version.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/git-tag-push.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/utils/git-tag-push.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maxiviper117/360-to-planer-images/HEAD/uv.lock --------------------------------------------------------------------------------