├── .gitignore ├── .gitmodules ├── 3RDPARTYLICENSES.md ├── CMakeLists.txt ├── LICENSE ├── README.md ├── example ├── face.ma └── face.py ├── modules ├── FindEigen3.cmake ├── FindMaya.cmake └── FindMayaPython.cmake ├── pyproject.toml ├── setup.cfg ├── setup.py └── src ├── dem_bones └── __init__.py ├── main.cpp └── utils.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/.gitmodules -------------------------------------------------------------------------------- /3RDPARTYLICENSES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/3RDPARTYLICENSES.md -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/README.md -------------------------------------------------------------------------------- /example/face.ma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/example/face.ma -------------------------------------------------------------------------------- /example/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/example/face.py -------------------------------------------------------------------------------- /modules/FindEigen3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/modules/FindEigen3.cmake -------------------------------------------------------------------------------- /modules/FindMaya.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/modules/FindMaya.cmake -------------------------------------------------------------------------------- /modules/FindMayaPython.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/modules/FindMayaPython.cmake -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/setup.py -------------------------------------------------------------------------------- /src/dem_bones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/src/dem_bones/__init__.py -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robertjoosten/maya-dem-bones/HEAD/src/utils.h --------------------------------------------------------------------------------