[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [710] trunk/py/scripts/addons/ add_curve_aceous_galore.py: set arctype to 3 by default.

Florian Meyer florianfelix at web.de
Sun Jun 6 15:43:59 CEST 2010


Revision: 710
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-extensions&revision=710
Author:   testscreenings
Date:     2010-06-06 15:43:58 +0200 (Sun, 06 Jun 2010)

Log Message:
-----------
set arctype to 3 by default.

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

Modified: trunk/py/scripts/addons/add_curve_aceous_galore.py
===================================================================
--- trunk/py/scripts/addons/add_curve_aceous_galore.py	2010-06-04 18:25:26 UTC (rev 709)
+++ trunk/py/scripts/addons/add_curve_aceous_galore.py	2010-06-06 13:43:58 UTC (rev 710)
@@ -835,9 +835,9 @@
                     default=90.0,
                     description="End angle")
     arcType = IntProperty(name="Arc type",
-                    default=2,
-                    min=1, soft_min=2,
-                    max=2, soft_max=2,
+                    default=3,
+                    min=3, soft_min=3,
+                    max=3, soft_max=3,
                     description="Sides of arc")
 
     #### Cogwheel properties
@@ -964,7 +964,7 @@
             #box.prop(props, 'arcType') # has only one Type?
             box.prop(props, 'startAngle')
             box.prop(props, 'endAngle')
-            #box.prop(props, 'innerRadius') # doesn't seem to do anything
+            box.prop(props, 'innerRadius') # doesn't seem to do anything
             box.prop(props, 'outerRadius')
         if props.GalloreType == 'Cogwheel':
             box.prop(props, 'teeth')
@@ -1148,4 +1148,4 @@
     bpy.types.INFO_MT_curve_add.remove(Curveaceous_galore_button)
 
 if __name__ == "__main__":
-    register()
+    register()
\ No newline at end of file




More information about the Bf-extensions-cvs mailing list