├── .github └── workflows │ └── upload-pypi.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── setup.py └── sphere2cube ├── __init__.py ├── blender_init.py ├── projector.blend ├── sphere2cube.py └── version.py /.github/workflows/upload-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/.github/workflows/upload-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/setup.py -------------------------------------------------------------------------------- /sphere2cube/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'Xyene' -------------------------------------------------------------------------------- /sphere2cube/blender_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/sphere2cube/blender_init.py -------------------------------------------------------------------------------- /sphere2cube/projector.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/sphere2cube/projector.blend -------------------------------------------------------------------------------- /sphere2cube/sphere2cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/sphere2cube/sphere2cube.py -------------------------------------------------------------------------------- /sphere2cube/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xyene/sphere2cube/HEAD/sphere2cube/version.py --------------------------------------------------------------------------------