├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── README.md ├── azure-pipelines.yml ├── bin ├── ik2fk.js └── install-addon.py ├── convert-ik-to-fk.py ├── manual-installation-instructions.md ├── package.json ├── run-addon.py ├── screenshots ├── iks-to-fks.gif ├── install-addon.png ├── save-settings.png └── user-preferences.png ├── src └── lib.rs └── tests ├── bone-hooks.blend ├── helper-python-scripts ├── print-actions-to-stdout.py └── print-num-objects-to-stdout.py ├── integration.rs ├── leg.blend ├── multiple-meshes-for-armature.blend └── unselected.blend /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | node_modules 4 | target 5 | Cargo.lock 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *.blend 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/README.md -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /bin/ik2fk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/bin/ik2fk.js -------------------------------------------------------------------------------- /bin/install-addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/bin/install-addon.py -------------------------------------------------------------------------------- /convert-ik-to-fk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/convert-ik-to-fk.py -------------------------------------------------------------------------------- /manual-installation-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/manual-installation-instructions.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/package.json -------------------------------------------------------------------------------- /run-addon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/run-addon.py -------------------------------------------------------------------------------- /screenshots/iks-to-fks.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/screenshots/iks-to-fks.gif -------------------------------------------------------------------------------- /screenshots/install-addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/screenshots/install-addon.png -------------------------------------------------------------------------------- /screenshots/save-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/screenshots/save-settings.png -------------------------------------------------------------------------------- /screenshots/user-preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/screenshots/user-preferences.png -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | //! Unused - just allows our crate to compile 2 | -------------------------------------------------------------------------------- /tests/bone-hooks.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/tests/bone-hooks.blend -------------------------------------------------------------------------------- /tests/helper-python-scripts/print-actions-to-stdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/tests/helper-python-scripts/print-actions-to-stdout.py -------------------------------------------------------------------------------- /tests/helper-python-scripts/print-num-objects-to-stdout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/tests/helper-python-scripts/print-num-objects-to-stdout.py -------------------------------------------------------------------------------- /tests/integration.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/tests/integration.rs -------------------------------------------------------------------------------- /tests/leg.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/tests/leg.blend -------------------------------------------------------------------------------- /tests/multiple-meshes-for-armature.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/tests/multiple-meshes-for-armature.blend -------------------------------------------------------------------------------- /tests/unselected.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinedufn/blender-iks-to-fks/HEAD/tests/unselected.blend --------------------------------------------------------------------------------