├── .gitignore ├── Freeze.py ├── README.txt ├── __init__.py ├── booleanOps.py ├── greaseTrim.py ├── helper.py ├── meshExtract.py └── utilOps.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /Freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadMinstrel/blender-sculpt-tools/HEAD/Freeze.py -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadMinstrel/blender-sculpt-tools/HEAD/README.txt -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadMinstrel/blender-sculpt-tools/HEAD/__init__.py -------------------------------------------------------------------------------- /booleanOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadMinstrel/blender-sculpt-tools/HEAD/booleanOps.py -------------------------------------------------------------------------------- /greaseTrim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadMinstrel/blender-sculpt-tools/HEAD/greaseTrim.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadMinstrel/blender-sculpt-tools/HEAD/helper.py -------------------------------------------------------------------------------- /meshExtract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadMinstrel/blender-sculpt-tools/HEAD/meshExtract.py -------------------------------------------------------------------------------- /utilOps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadMinstrel/blender-sculpt-tools/HEAD/utilOps.py --------------------------------------------------------------------------------