├── .gitignore ├── LICENSE ├── README.md ├── VolumetricSMPL ├── __init__.py ├── modules.py ├── volumetric_smpl.py └── winding_numbers.py ├── pyproject.toml └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markomih/VolumetricSMPL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markomih/VolumetricSMPL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markomih/VolumetricSMPL/HEAD/README.md -------------------------------------------------------------------------------- /VolumetricSMPL/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markomih/VolumetricSMPL/HEAD/VolumetricSMPL/__init__.py -------------------------------------------------------------------------------- /VolumetricSMPL/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markomih/VolumetricSMPL/HEAD/VolumetricSMPL/modules.py -------------------------------------------------------------------------------- /VolumetricSMPL/volumetric_smpl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markomih/VolumetricSMPL/HEAD/VolumetricSMPL/volumetric_smpl.py -------------------------------------------------------------------------------- /VolumetricSMPL/winding_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markomih/VolumetricSMPL/HEAD/VolumetricSMPL/winding_numbers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markomih/VolumetricSMPL/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markomih/VolumetricSMPL/HEAD/setup.py --------------------------------------------------------------------------------