├── .gitignore ├── README.md ├── blender-addon ├── __init__.py ├── blender_manifest.toml └── plyfile.py ├── notebook.ipynb ├── requirements.txt └── zip.sh /.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | *.oso -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReshotAI/gaussian-splatting-blender-addon/HEAD/README.md -------------------------------------------------------------------------------- /blender-addon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReshotAI/gaussian-splatting-blender-addon/HEAD/blender-addon/__init__.py -------------------------------------------------------------------------------- /blender-addon/blender_manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReshotAI/gaussian-splatting-blender-addon/HEAD/blender-addon/blender_manifest.toml -------------------------------------------------------------------------------- /blender-addon/plyfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReshotAI/gaussian-splatting-blender-addon/HEAD/blender-addon/plyfile.py -------------------------------------------------------------------------------- /notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReshotAI/gaussian-splatting-blender-addon/HEAD/notebook.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fake-bpy-module-latest -------------------------------------------------------------------------------- /zip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReshotAI/gaussian-splatting-blender-addon/HEAD/zip.sh --------------------------------------------------------------------------------