Changeset View
Changeset View
Standalone View
Standalone View
rigify/legacy/rigs/pitchipoy/limbs/super_limb.py
| import bpy, re | import bpy, re | ||||
| from .arm import create_arm | from .arm import create_arm | ||||
| from .leg import create_leg | from .leg import create_leg | ||||
| from .paw import create_paw | from .paw import create_paw | ||||
| from .ui import create_script | from .ui import create_script | ||||
| from .limb_utils import * | from .limb_utils import orient_bone, make_constraint, get_bone_name | ||||
| from mathutils import Vector | from mathutils import Vector | ||||
| from ....utils import copy_bone, flip_bone, put_bone, create_cube_widget | from ....utils import copy_bone, put_bone, strip_org | ||||
| from ....utils import strip_org, make_deformer_name, create_widget | |||||
| from ....utils import create_circle_widget, create_sphere_widget | from ....utils import create_circle_widget, create_sphere_widget | ||||
| from ....utils import MetarigError, make_mechanism_name, org | |||||
| from ....utils import create_limb_widget, connected_children_names | from ....utils import create_limb_widget, connected_children_names | ||||
| from ..super_widgets import create_ikarrow_widget | from ..super_widgets import create_ikarrow_widget | ||||
| from math import trunc | from math import trunc | ||||
| from .....utils.mechanism import make_property | from .....utils.mechanism import make_property | ||||
| class Rig: | class Rig: | ||||
| ▲ Show 20 Lines • Show All 747 Lines • Show Last 20 Lines | |||||