3D Pie menu: Support pivotbottom for selected objects #105105

Merged
Pratik Borhade merged 2 commits from PratikPB2123/blender-addons:105091-pie-menu into main 2024-01-12 12:01:30 +01:00
Showing only changes of commit ad51897162 - Show all commits

View File

@ -43,6 +43,22 @@ class PIE_OT_PivotToSelection(Operator):
# Pivot to Bottom
def origin_to_bottom(ob):
if ob.type != 'MESH':
return
init = 0
for x in ob.data.vertices:
if init == 0:
a = x.co.z
init = 1
elif x.co.z < a:
a = x.co.z
for x in ob.data.vertices:
x.co.z -= a
ob.location.z += a
class PIE_OT_PivotBottom(Operator):
bl_idname = "object.pivotobottom"
@ -60,19 +76,8 @@ class PIE_OT_PivotBottom(Operator):
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
bpy.ops.object.origin_set(type='ORIGIN_GEOMETRY')
init = 0
for ob in context.selected_objects:
for x in ob.data.vertices:
if init == 0:
a = x.co.z
init = 1
elif x.co.z < a:
a = x.co.z
for x in ob.data.vertices:
x.co.z -= a
ob.location.z += a
origin_to_bottom(ob)
return {'FINISHED'}
@ -94,19 +99,10 @@ class PIE_OT_PivotBottom_edit(Operator):
bpy.ops.object.mode_set(mode='OBJECT')
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)
bpy.ops.object.origin_set(type='ORIGIN_GEOMETRY')
o = context.active_object
init = 0
for x in o.data.vertices:
if init == 0:
a = x.co.z
init = 1
elif x.co.z < a:
a = x.co.z
for x in o.data.vertices:
x.co.z -= a
for ob in context.selected_objects:
origin_to_bottom(ob)
o.location.z += a
bpy.ops.object.mode_set(mode='EDIT')
return {'FINISHED'}