[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [646] trunk/py/scripts/addons/ mesh_relax.py: Mesh Relax addon new hard max iteration to 100

Daniel Salazar zanqdo at gmail.com
Fri Apr 30 04:01:46 CEST 2010


Revision: 646
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=646
Author:   zanqdo
Date:     2010-04-30 04:01:45 +0200 (Fri, 30 Apr 2010)

Log Message:
-----------
Mesh Relax addon new hard max iteration to 100

Modified Paths:
--------------
    trunk/py/scripts/addons/mesh_relax.py

Modified: trunk/py/scripts/addons/mesh_relax.py
===================================================================
--- trunk/py/scripts/addons/mesh_relax.py	2010-04-29 23:45:05 UTC (rev 645)
+++ trunk/py/scripts/addons/mesh_relax.py	2010-04-30 02:01:45 UTC (rev 646)
@@ -97,7 +97,7 @@
     bl_options = {'REGISTER', 'UNDO'}
 
     iterations = IntProperty(name="Relax iterations",
-                default=1, min=0, max=10, soft_min=0, soft_max=10)
+                default=1, min=0, max=100, soft_min=0, soft_max=10)
 
     def poll(self, context):
         obj = context.active_object




More information about the Bf-extensions-cvs mailing list