├── .gitignore ├── .gitmodules ├── README.md ├── assets └── teaser.png └── example ├── points_sample ├── create_partnext.py ├── gltf.py ├── sample_from_glb.py ├── sampling.py └── utils.py └── toolkit_example.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/README.md -------------------------------------------------------------------------------- /assets/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/assets/teaser.png -------------------------------------------------------------------------------- /example/points_sample/create_partnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/example/points_sample/create_partnext.py -------------------------------------------------------------------------------- /example/points_sample/gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/example/points_sample/gltf.py -------------------------------------------------------------------------------- /example/points_sample/sample_from_glb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/example/points_sample/sample_from_glb.py -------------------------------------------------------------------------------- /example/points_sample/sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/example/points_sample/sampling.py -------------------------------------------------------------------------------- /example/points_sample/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/example/points_sample/utils.py -------------------------------------------------------------------------------- /example/toolkit_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AuthorityWang/PartNeXt/HEAD/example/toolkit_example.py --------------------------------------------------------------------------------