├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── images └── logo.jpg ├── op ├── mesh_modes.py ├── misc.py ├── pivot.py ├── quick_align.py ├── quick_lattice.py ├── quick_pipe.py ├── radial_symmetry.py ├── rebase_cylinder.py ├── selection.py ├── smart_delete.py ├── smart_extrude.py ├── smart_modify.py ├── smart_transform.py ├── super_smart_create.py └── uv_functions.py ├── ui ├── menus.py ├── pannels.py └── pies.py └── utils ├── debug.py ├── dictionaries.py ├── itools.py ├── load.py ├── mesh.py └── user_prefs.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/__init__.py -------------------------------------------------------------------------------- /images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/images/logo.jpg -------------------------------------------------------------------------------- /op/mesh_modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/mesh_modes.py -------------------------------------------------------------------------------- /op/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/misc.py -------------------------------------------------------------------------------- /op/pivot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/pivot.py -------------------------------------------------------------------------------- /op/quick_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/quick_align.py -------------------------------------------------------------------------------- /op/quick_lattice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/quick_lattice.py -------------------------------------------------------------------------------- /op/quick_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/quick_pipe.py -------------------------------------------------------------------------------- /op/radial_symmetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/radial_symmetry.py -------------------------------------------------------------------------------- /op/rebase_cylinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/rebase_cylinder.py -------------------------------------------------------------------------------- /op/selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/selection.py -------------------------------------------------------------------------------- /op/smart_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/smart_delete.py -------------------------------------------------------------------------------- /op/smart_extrude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/smart_extrude.py -------------------------------------------------------------------------------- /op/smart_modify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/smart_modify.py -------------------------------------------------------------------------------- /op/smart_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/smart_transform.py -------------------------------------------------------------------------------- /op/super_smart_create.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/super_smart_create.py -------------------------------------------------------------------------------- /op/uv_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/op/uv_functions.py -------------------------------------------------------------------------------- /ui/menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/ui/menus.py -------------------------------------------------------------------------------- /ui/pannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/ui/pannels.py -------------------------------------------------------------------------------- /ui/pies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/ui/pies.py -------------------------------------------------------------------------------- /utils/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/utils/debug.py -------------------------------------------------------------------------------- /utils/dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/utils/dictionaries.py -------------------------------------------------------------------------------- /utils/itools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/utils/itools.py -------------------------------------------------------------------------------- /utils/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/utils/load.py -------------------------------------------------------------------------------- /utils/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/utils/mesh.py -------------------------------------------------------------------------------- /utils/user_prefs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxivz/interactivetoolsblender/HEAD/utils/user_prefs.py --------------------------------------------------------------------------------