2010-02-11 23:27:34 +00:00
|
|
|
# ##### BEGIN GPL LICENSE BLOCK #####
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
2010-02-12 13:34:04 +00:00
|
|
|
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2010-02-11 23:27:34 +00:00
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
2011-07-25 06:40:16 +00:00
|
|
|
# <pep8-80 compliant>
|
2010-02-11 23:27:34 +00:00
|
|
|
|
|
|
|
import bpy
|
2011-08-12 06:57:00 +00:00
|
|
|
from bpy.types import Operator
|
2010-04-11 14:22:27 +00:00
|
|
|
from mathutils import Vector
|
2010-02-11 23:27:34 +00:00
|
|
|
|
2011-07-29 01:24:03 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
def GlobalBB_LQ(bb_world):
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
# Initialize the variables with the 8th vertex
|
2011-07-25 06:40:16 +00:00
|
|
|
left, right, front, back, down, up = (bb_world[7][0],
|
|
|
|
bb_world[7][0],
|
|
|
|
bb_world[7][1],
|
|
|
|
bb_world[7][1],
|
|
|
|
bb_world[7][2],
|
|
|
|
bb_world[7][2],
|
|
|
|
)
|
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
# Test against the other 7 verts
|
2011-07-29 01:24:03 +00:00
|
|
|
for i in range(7):
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
# X Range
|
|
|
|
val = bb_world[i][0]
|
|
|
|
if val < left:
|
|
|
|
left = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
if val > right:
|
|
|
|
right = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
# Y Range
|
|
|
|
val = bb_world[i][1]
|
|
|
|
if val < front:
|
|
|
|
front = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
if val > back:
|
|
|
|
back = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
# Z Range
|
|
|
|
val = bb_world[i][2]
|
|
|
|
if val < down:
|
|
|
|
down = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
if val > up:
|
|
|
|
up = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
return (Vector((left, front, up)), Vector((right, back, down)))
|
|
|
|
|
2011-07-29 01:24:03 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
def GlobalBB_HQ(obj):
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:30:19 +00:00
|
|
|
matrix_world = obj.matrix_world.copy()
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
# Initialize the variables with the last vertex
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
verts = obj.data.vertices
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-25 09:31:39 +00:00
|
|
|
val = matrix_world * verts[-1].co
|
2011-07-25 06:40:16 +00:00
|
|
|
|
|
|
|
left, right, front, back, down, up = (val[0],
|
|
|
|
val[0],
|
|
|
|
val[1],
|
|
|
|
val[1],
|
|
|
|
val[2],
|
|
|
|
val[2],
|
|
|
|
)
|
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
# Test against all other verts
|
2011-07-29 01:24:03 +00:00
|
|
|
for i in range(len(verts) - 1):
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-25 09:31:39 +00:00
|
|
|
vco = matrix_world * verts[i].co
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
# X Range
|
|
|
|
val = vco[0]
|
|
|
|
if val < left:
|
|
|
|
left = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
if val > right:
|
|
|
|
right = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
# Y Range
|
|
|
|
val = vco[1]
|
|
|
|
if val < front:
|
|
|
|
front = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
if val > back:
|
|
|
|
back = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
# Z Range
|
|
|
|
val = vco[2]
|
|
|
|
if val < down:
|
|
|
|
down = val
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
if val > up:
|
|
|
|
up = val
|
2011-07-19 13:27:05 +00:00
|
|
|
|
2011-07-25 06:40:16 +00:00
|
|
|
return Vector((left, front, up)), Vector((right, back, down))
|
2010-02-11 23:27:34 +00:00
|
|
|
|
2011-07-25 06:40:16 +00:00
|
|
|
|
|
|
|
def align_objects(align_x,
|
|
|
|
align_y,
|
|
|
|
align_z,
|
|
|
|
align_mode,
|
|
|
|
relative_to,
|
|
|
|
bb_quality):
|
2010-02-11 23:27:34 +00:00
|
|
|
|
2010-02-12 01:03:22 +00:00
|
|
|
cursor = bpy.context.scene.cursor_location
|
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
Left_Front_Up_SEL = [0.0, 0.0, 0.0]
|
|
|
|
Right_Back_Down_SEL = [0.0, 0.0, 0.0]
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-02-12 05:02:29 +00:00
|
|
|
flag_first = True
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
objs = []
|
|
|
|
|
2010-02-12 05:02:29 +00:00
|
|
|
for obj in bpy.context.selected_objects:
|
2011-07-25 09:31:39 +00:00
|
|
|
matrix_world = obj.matrix_world.copy()
|
|
|
|
bb_world = [matrix_world * Vector(v[:]) for v in obj.bound_box]
|
2010-12-19 07:05:29 +00:00
|
|
|
objs.append((obj, bb_world))
|
|
|
|
|
|
|
|
if not objs:
|
|
|
|
return False
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
for obj, bb_world in objs:
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-10-07 20:53:54 +00:00
|
|
|
if bb_quality and obj.type == 'MESH':
|
2011-07-19 15:07:29 +00:00
|
|
|
GBB = GlobalBB_HQ(obj)
|
|
|
|
else:
|
|
|
|
GBB = GlobalBB_LQ(bb_world)
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
Left_Front_Up = GBB[0]
|
|
|
|
Right_Back_Down = GBB[1]
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
# Active Center
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
if obj == bpy.context.active_object:
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
center_active_x = (Left_Front_Up[0] + Right_Back_Down[0]) / 2.0
|
|
|
|
center_active_y = (Left_Front_Up[1] + Right_Back_Down[1]) / 2.0
|
|
|
|
center_active_z = (Left_Front_Up[2] + Right_Back_Down[2]) / 2.0
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
size_active_x = (Right_Back_Down[0] - Left_Front_Up[0]) / 2.0
|
|
|
|
size_active_y = (Right_Back_Down[1] - Left_Front_Up[1]) / 2.0
|
|
|
|
size_active_z = (Left_Front_Up[2] - Right_Back_Down[2]) / 2.0
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
# Selection Center
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
if flag_first:
|
|
|
|
flag_first = False
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
Left_Front_Up_SEL[0] = Left_Front_Up[0]
|
|
|
|
Left_Front_Up_SEL[1] = Left_Front_Up[1]
|
|
|
|
Left_Front_Up_SEL[2] = Left_Front_Up[2]
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
Right_Back_Down_SEL[0] = Right_Back_Down[0]
|
|
|
|
Right_Back_Down_SEL[1] = Right_Back_Down[1]
|
|
|
|
Right_Back_Down_SEL[2] = Right_Back_Down[2]
|
2010-12-19 07:05:29 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
# X axis
|
2011-07-19 13:27:05 +00:00
|
|
|
if Left_Front_Up[0] < Left_Front_Up_SEL[0]:
|
|
|
|
Left_Front_Up_SEL[0] = Left_Front_Up[0]
|
2010-12-19 07:05:29 +00:00
|
|
|
# Y axis
|
2011-07-19 13:27:05 +00:00
|
|
|
if Left_Front_Up[1] < Left_Front_Up_SEL[1]:
|
|
|
|
Left_Front_Up_SEL[1] = Left_Front_Up[1]
|
2010-12-19 07:05:29 +00:00
|
|
|
# Z axis
|
2011-07-19 13:27:05 +00:00
|
|
|
if Left_Front_Up[2] > Left_Front_Up_SEL[2]:
|
|
|
|
Left_Front_Up_SEL[2] = Left_Front_Up[2]
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
# X axis
|
2011-07-19 13:27:05 +00:00
|
|
|
if Right_Back_Down[0] > Right_Back_Down_SEL[0]:
|
|
|
|
Right_Back_Down_SEL[0] = Right_Back_Down[0]
|
2010-12-19 07:05:29 +00:00
|
|
|
# Y axis
|
2011-07-19 13:27:05 +00:00
|
|
|
if Right_Back_Down[1] > Right_Back_Down_SEL[1]:
|
|
|
|
Right_Back_Down_SEL[1] = Right_Back_Down[1]
|
2010-12-19 07:05:29 +00:00
|
|
|
# Z axis
|
2011-07-19 13:27:05 +00:00
|
|
|
if Right_Back_Down[2] < Right_Back_Down_SEL[2]:
|
|
|
|
Right_Back_Down_SEL[2] = Right_Back_Down[2]
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
center_sel_x = (Left_Front_Up_SEL[0] + Right_Back_Down_SEL[0]) / 2.0
|
|
|
|
center_sel_y = (Left_Front_Up_SEL[1] + Right_Back_Down_SEL[1]) / 2.0
|
|
|
|
center_sel_z = (Left_Front_Up_SEL[2] + Right_Back_Down_SEL[2]) / 2.0
|
2010-02-12 05:02:29 +00:00
|
|
|
|
2010-02-13 23:29:26 +00:00
|
|
|
# Main Loop
|
2010-02-12 05:02:29 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
for obj, bb_world in objs:
|
2011-07-25 09:31:39 +00:00
|
|
|
matrix_world = obj.matrix_world.copy()
|
|
|
|
bb_world = [matrix_world * Vector(v[:]) for v in obj.bound_box]
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-10-07 20:53:54 +00:00
|
|
|
if bb_quality and obj.type == 'MESH':
|
2011-07-19 15:07:29 +00:00
|
|
|
GBB = GlobalBB_HQ(obj)
|
|
|
|
else:
|
|
|
|
GBB = GlobalBB_LQ(bb_world)
|
2011-07-25 06:40:16 +00:00
|
|
|
|
2011-07-19 13:27:05 +00:00
|
|
|
Left_Front_Up = GBB[0]
|
|
|
|
Right_Back_Down = GBB[1]
|
|
|
|
|
|
|
|
center_x = (Left_Front_Up[0] + Right_Back_Down[0]) / 2.0
|
|
|
|
center_y = (Left_Front_Up[1] + Right_Back_Down[1]) / 2.0
|
|
|
|
center_z = (Left_Front_Up[2] + Right_Back_Down[2]) / 2.0
|
|
|
|
|
|
|
|
positive_x = Right_Back_Down[0]
|
|
|
|
positive_y = Right_Back_Down[1]
|
|
|
|
positive_z = Left_Front_Up[2]
|
|
|
|
|
|
|
|
negative_x = Left_Front_Up[0]
|
|
|
|
negative_y = Left_Front_Up[1]
|
|
|
|
negative_z = Right_Back_Down[2]
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
obj_loc = obj.location
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
if align_x:
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
# Align Mode
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-01-01 07:20:34 +00:00
|
|
|
if relative_to == 'OPT_4': # Active relative
|
2010-12-19 07:05:29 +00:00
|
|
|
if align_mode == 'OPT_1':
|
|
|
|
obj_x = obj_loc[0] - negative_x - size_active_x
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif align_mode == 'OPT_3':
|
|
|
|
obj_x = obj_loc[0] - positive_x + size_active_x
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-01-01 07:20:34 +00:00
|
|
|
else: # Everything else relative
|
2010-12-19 07:05:29 +00:00
|
|
|
if align_mode == 'OPT_1':
|
|
|
|
obj_x = obj_loc[0] - negative_x
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif align_mode == 'OPT_3':
|
|
|
|
obj_x = obj_loc[0] - positive_x
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-01-01 07:20:34 +00:00
|
|
|
if align_mode == 'OPT_2': # All relative
|
2010-12-19 07:05:29 +00:00
|
|
|
obj_x = obj_loc[0] - center_x
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
# Relative To
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
if relative_to == 'OPT_1':
|
|
|
|
loc_x = obj_x
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif relative_to == 'OPT_2':
|
|
|
|
loc_x = obj_x + cursor[0]
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif relative_to == 'OPT_3':
|
|
|
|
loc_x = obj_x + center_sel_x
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif relative_to == 'OPT_4':
|
|
|
|
loc_x = obj_x + center_active_x
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
obj.location[0] = loc_x
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
if align_y:
|
|
|
|
# Align Mode
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-01-01 07:20:34 +00:00
|
|
|
if relative_to == 'OPT_4': # Active relative
|
2010-12-19 07:05:29 +00:00
|
|
|
if align_mode == 'OPT_1':
|
|
|
|
obj_y = obj_loc[1] - negative_y - size_active_y
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif align_mode == 'OPT_3':
|
|
|
|
obj_y = obj_loc[1] - positive_y + size_active_y
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-01-01 07:20:34 +00:00
|
|
|
else: # Everything else relative
|
2010-12-19 07:05:29 +00:00
|
|
|
if align_mode == 'OPT_1':
|
|
|
|
obj_y = obj_loc[1] - negative_y
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif align_mode == 'OPT_3':
|
|
|
|
obj_y = obj_loc[1] - positive_y
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-01-01 07:20:34 +00:00
|
|
|
if align_mode == 'OPT_2': # All relative
|
2010-12-19 07:05:29 +00:00
|
|
|
obj_y = obj_loc[1] - center_y
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
# Relative To
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
if relative_to == 'OPT_1':
|
|
|
|
loc_y = obj_y
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif relative_to == 'OPT_2':
|
|
|
|
loc_y = obj_y + cursor[1]
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif relative_to == 'OPT_3':
|
|
|
|
loc_y = obj_y + center_sel_y
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif relative_to == 'OPT_4':
|
|
|
|
loc_y = obj_y + center_active_y
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
obj.location[1] = loc_y
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
if align_z:
|
|
|
|
# Align Mode
|
2011-01-01 07:20:34 +00:00
|
|
|
if relative_to == 'OPT_4': # Active relative
|
2010-12-19 07:05:29 +00:00
|
|
|
if align_mode == 'OPT_1':
|
|
|
|
obj_z = obj_loc[2] - negative_z - size_active_z
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif align_mode == 'OPT_3':
|
|
|
|
obj_z = obj_loc[2] - positive_z + size_active_z
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-01-01 07:20:34 +00:00
|
|
|
else: # Everything else relative
|
2010-12-19 07:05:29 +00:00
|
|
|
if align_mode == 'OPT_1':
|
|
|
|
obj_z = obj_loc[2] - negative_z
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif align_mode == 'OPT_3':
|
|
|
|
obj_z = obj_loc[2] - positive_z
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-01-01 07:20:34 +00:00
|
|
|
if align_mode == 'OPT_2': # All relative
|
2010-12-19 07:05:29 +00:00
|
|
|
obj_z = obj_loc[2] - center_z
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
# Relative To
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
if relative_to == 'OPT_1':
|
|
|
|
loc_z = obj_z
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif relative_to == 'OPT_2':
|
|
|
|
loc_z = obj_z + cursor[2]
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif relative_to == 'OPT_3':
|
|
|
|
loc_z = obj_z + center_sel_z
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
elif relative_to == 'OPT_4':
|
|
|
|
loc_z = obj_z + center_active_z
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2010-12-19 07:05:29 +00:00
|
|
|
obj.location[2] = loc_z
|
|
|
|
|
|
|
|
return True
|
2010-02-11 23:27:34 +00:00
|
|
|
|
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
from bpy.props import EnumProperty, BoolProperty
|
2010-02-11 23:27:34 +00:00
|
|
|
|
2010-02-22 23:32:58 +00:00
|
|
|
|
2011-08-12 06:57:00 +00:00
|
|
|
class AlignObjects(Operator):
|
2010-02-11 23:27:34 +00:00
|
|
|
'''Align Objects'''
|
|
|
|
bl_idname = "object.align"
|
2010-02-15 10:06:27 +00:00
|
|
|
bl_label = "Align Objects"
|
2010-03-01 00:03:51 +00:00
|
|
|
bl_options = {'REGISTER', 'UNDO'}
|
2010-02-12 01:03:22 +00:00
|
|
|
|
2011-07-19 15:07:29 +00:00
|
|
|
bb_quality = BoolProperty(
|
|
|
|
name="High Quality",
|
2011-07-25 06:40:16 +00:00
|
|
|
description=("Enables high quality calculation of the "
|
|
|
|
"bounding box for perfect results on complex "
|
|
|
|
"shape meshes with rotation/scale (Slow)"),
|
2011-08-19 19:25:20 +00:00
|
|
|
default=True,
|
|
|
|
)
|
|
|
|
align_mode = EnumProperty(
|
|
|
|
name="Align Mode:",
|
|
|
|
items=(('OPT_1', "Negative Sides", ""),
|
|
|
|
('OPT_2', "Centers", ""),
|
|
|
|
('OPT_3', "Positive Sides", ""),
|
|
|
|
),
|
|
|
|
default='OPT_2',
|
|
|
|
)
|
|
|
|
relative_to = EnumProperty(
|
|
|
|
name="Relative To:",
|
|
|
|
items=(('OPT_1', "Scene Origin", ""),
|
|
|
|
('OPT_2', "3D Cursor", ""),
|
|
|
|
('OPT_3', "Selection", ""),
|
|
|
|
('OPT_4', "Active", ""),
|
|
|
|
),
|
|
|
|
default='OPT_4',
|
|
|
|
)
|
|
|
|
align_axis = EnumProperty(
|
|
|
|
name="Align",
|
|
|
|
description="Align to axis",
|
|
|
|
items=(('X', "X", ""),
|
|
|
|
('Y', "Y", ""),
|
|
|
|
('Z', "Z", ""),
|
|
|
|
),
|
|
|
|
options={'ENUM_FLAG'},
|
|
|
|
)
|
2010-02-11 23:27:34 +00:00
|
|
|
|
2010-08-09 01:37:09 +00:00
|
|
|
@classmethod
|
|
|
|
def poll(cls, context):
|
2010-02-22 13:25:32 +00:00
|
|
|
return context.mode == 'OBJECT'
|
|
|
|
|
2010-02-11 23:27:34 +00:00
|
|
|
def execute(self, context):
|
2010-12-19 07:05:29 +00:00
|
|
|
align_axis = self.align_axis
|
2011-07-25 06:40:16 +00:00
|
|
|
ret = align_objects('X' in align_axis,
|
|
|
|
'Y' in align_axis,
|
|
|
|
'Z' in align_axis,
|
|
|
|
self.align_mode,
|
|
|
|
self.relative_to,
|
|
|
|
self.bb_quality)
|
2010-12-19 07:05:29 +00:00
|
|
|
|
|
|
|
if not ret:
|
|
|
|
self.report({'WARNING'}, "No objects with bound-box selected")
|
|
|
|
return {'CANCELLED'}
|
|
|
|
else:
|
2011-07-22 15:54:54 +00:00
|
|
|
return {'FINISHED'}
|