Changeset View
Changeset View
Standalone View
Standalone View
rigify/rigs/limbs/paw.py
| Show All 13 Lines | |||||
| # along with this program; if not, write to the Free Software Foundation, | # along with this program; if not, write to the Free Software Foundation, | ||||
| # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | # Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||||
| # | # | ||||
| #======================= END GPL LICENSE BLOCK ======================== | #======================= END GPL LICENSE BLOCK ======================== | ||||
| # <pep8 compliant> | # <pep8 compliant> | ||||
| import bpy | import bpy | ||||
| import math | |||||
| from itertools import count | from ...utils.bones import compute_chain_x_axis, align_bone_x_axis, align_bone_z_axis | ||||
| from mathutils import Vector | from ...utils.bones import align_bone_to_axis, flip_bone | ||||
| from ...utils.bones import compute_chain_x_axis, align_bone_x_axis, align_bone_y_axis, align_bone_z_axis | |||||
| from ...utils.bones import align_bone_to_axis, flip_bone, put_bone, align_bone_orientation | |||||
| from ...utils.naming import make_derived_name | from ...utils.naming import make_derived_name | ||||
| from ...utils.misc import map_list | |||||
| from ...utils.widgets_basic import create_circle_widget | |||||
| from ..widgets import create_foot_widget, create_ballsocket_widget | from ..widgets import create_foot_widget, create_ballsocket_widget | ||||
| from ...base_rig import stage | from ...base_rig import stage | ||||
| from .limb_rigs import BaseLimbRig | from .limb_rigs import BaseLimbRig | ||||
| class Rig(BaseLimbRig): | class Rig(BaseLimbRig): | ||||
| ▲ Show 20 Lines • Show All 253 Lines • Show Last 20 Lines | |||||