[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [38610] trunk/blender/release/scripts/ startup/bl_operators/object_align.py: 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

Daniel Salazar zanqdo at gmail.com
Fri Jul 22 17:54:55 CEST 2011


Revision: 38610
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=38610
Author:   zanqdo
Date:     2011-07-22 15:54:54 +0000 (Fri, 22 Jul 2011)
Log Message:
-----------
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

Modified Paths:
--------------
    trunk/blender/release/scripts/startup/bl_operators/object_align.py

Modified: trunk/blender/release/scripts/startup/bl_operators/object_align.py
===================================================================
--- trunk/blender/release/scripts/startup/bl_operators/object_align.py	2011-07-22 15:28:50 UTC (rev 38609)
+++ trunk/blender/release/scripts/startup/bl_operators/object_align.py	2011-07-22 15:54:54 UTC (rev 38610)
@@ -340,7 +340,7 @@
     bb_quality = BoolProperty(
             name="High Quality",
             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=(
             ('OPT_1', "Negative Sides", ""),
@@ -380,4 +380,4 @@
             self.report({'WARNING'}, "No objects with bound-box selected")
             return {'CANCELLED'}
         else:
-            return {'FINISHED'}
\ No newline at end of file
+            return {'FINISHED'}




More information about the Bf-blender-cvs mailing list