├── .gitignore ├── LICENSE ├── README.md ├── README_CN.md ├── __init__.py ├── data.py ├── draw.py ├── gizmo.json ├── gizmo.py ├── image └── emm.jpeg ├── operators.py ├── preferences.py ├── timers.py ├── translate.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/README_CN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/__init__.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/data.py -------------------------------------------------------------------------------- /draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/draw.py -------------------------------------------------------------------------------- /gizmo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/gizmo.json -------------------------------------------------------------------------------- /gizmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/gizmo.py -------------------------------------------------------------------------------- /image/emm.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/image/emm.jpeg -------------------------------------------------------------------------------- /operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/operators.py -------------------------------------------------------------------------------- /preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/preferences.py -------------------------------------------------------------------------------- /timers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/timers.py -------------------------------------------------------------------------------- /translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/translate.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yorha4D/simple_deform_helper/HEAD/utils.py --------------------------------------------------------------------------------