├── .gitignore ├── README.rst ├── doc └── assets │ └── example_3dtiles_on_cesium.png ├── py3dtiles_batcher ├── __init__.py └── command_line.py ├── requirements.txt ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | **/__pycache__ 3 | py3dtiles_batcher.egg-info -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tofull/py3dtiles_batcher/HEAD/README.rst -------------------------------------------------------------------------------- /doc/assets/example_3dtiles_on_cesium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tofull/py3dtiles_batcher/HEAD/doc/assets/example_3dtiles_on_cesium.png -------------------------------------------------------------------------------- /py3dtiles_batcher/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.0.3' -------------------------------------------------------------------------------- /py3dtiles_batcher/command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tofull/py3dtiles_batcher/HEAD/py3dtiles_batcher/command_line.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tofull/py3dtiles_batcher/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tofull/py3dtiles_batcher/HEAD/setup.py --------------------------------------------------------------------------------