Let's try default High Quality for object align, it's slow but it's simply the correct way, users can disable while tweaking the align modes and then enable again for final result IF they are working on *dense* meshes

This commit is contained in:
Daniel Salazar
2011-07-22 15:54:54 +00:00
parent ea90544d65
commit 89c062038a

View File

@@ -340,7 +340,7 @@ class AlignObjects(bpy.types.Operator):
bb_quality = BoolProperty( bb_quality = BoolProperty(
name="High Quality", name="High Quality",
description="Enables high quality calculation of the bounding box for perfect results on complex shape meshes with rotation/scale (Slow)", description="Enables high quality calculation of the bounding box for perfect results on complex shape meshes with rotation/scale (Slow)",
default=False) default=True)
align_mode = EnumProperty(items=( align_mode = EnumProperty(items=(
('OPT_1', "Negative Sides", ""), ('OPT_1', "Negative Sides", ""),
@@ -380,4 +380,4 @@ class AlignObjects(bpy.types.Operator):
self.report({'WARNING'}, "No objects with bound-box selected") self.report({'WARNING'}, "No objects with bound-box selected")
return {'CANCELLED'} return {'CANCELLED'}
else: else:
return {'FINISHED'} return {'FINISHED'}