[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [2746] branches/geodesic_domes/ geodesic_domes/third_domes_panel.py: more tooltip work

Brendon Murphy meta.androcto1 at gmail.com
Tue Dec 6 21:27:34 CET 2011


Revision: 2746
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=2746
Author:   meta-androcto
Date:     2011-12-06 20:27:27 +0000 (Tue, 06 Dec 2011)
Log Message:
-----------
more tooltip work
renaming menu's more consistently through object types

Modified Paths:
--------------
    branches/geodesic_domes/geodesic_domes/third_domes_panel.py

Modified: branches/geodesic_domes/geodesic_domes/third_domes_panel.py
===================================================================
--- branches/geodesic_domes/geodesic_domes/third_domes_panel.py	2011-12-06 18:49:29 UTC (rev 2745)
+++ branches/geodesic_domes/geodesic_domes/third_domes_panel.py	2011-12-06 20:27:27 UTC (rev 2746)
@@ -177,25 +177,35 @@
                     description = "Use an imported mesh", default = False)
 
 #Cylinder
-    cyxres= IntProperty(name="cyxres", min = 3, max = 32,\
-              description = "x resolution", default = 5 )
-    cyyres= IntProperty(name="cyyres", min = 3, max = 32,\
-              description = "y resolution", default = 5 )
-    cyxsz= FloatProperty(name="cyxsz", min = 0.01, max = 10, default = 1 )
-    cyysz= FloatProperty(name="cyysz", min = 0.01, max = 10, default = 1 )    
-    cyxell= FloatProperty(name="cyxell",  min = 0.001, max = 4, default = 1 )
-    cygap= FloatProperty(name="cygap",  min = -2, max = 2, default = 1 )
-    cygphase= FloatProperty(name="cygphase", min = -4, max = 4, default = 0 )
+    cyxres= IntProperty(name="X/Y resolution", min = 3, max = 32,\
+              description = "number of faces around x/y", default = 5 )
+    cyyres= IntProperty(name="Z resolution", min = 3, max = 32,\
+              description = "number of faces in z direction", default = 5 )
+    cyxsz= FloatProperty(name="Scale x/y", min = 0.01, max = 10,\
+	          description = "scale in x/y direction", default = 1 )
+    cyysz= FloatProperty(name="Scale z", min = 0.01, max = 10,\
+              description = "scale in z direction", default = 1 )    
+    cyxell= FloatProperty(name="Stretch x",  min = 0.001, max = 4,\
+              description = "stretch in x direction", default = 1 )
+    cygap= FloatProperty(name="Gap",  min = -2, max = 2,\
+              description = "shrink in % around radius", default = 1 )
+    cygphase= FloatProperty(name="Phase", min = -4, max = 4,\
+              description = "rotate around pivot x/y", default = 0 )
 #Parabola
-    paxres= IntProperty(name="paxres",  min = 3, max = 32,\
-           description = "x resolution", default = 5 )
-    payres= IntProperty(name="payres",  min = 3, max = 32,\
-           description = "y resolution", default = 5 )
-    paxsz= FloatProperty(name="paxsz", min = 0.001, max = 10, default = 0.30)
-    paysz= FloatProperty(name="paysz", min = 0.001, max = 10,  default = 1 )
-    paxell= FloatProperty(name="paxell", min = 0.001, max = 4, default = 1 )
-    pagap= FloatProperty(name="pagap", min = -2, max = 2,  default = 1 )
-    pagphase= FloatProperty(name="pagphase", min = -4, max = 4, default = 0 )
+    paxres= IntProperty(name="X/Y resolution",  min = 3, max = 32,\
+           description = "number of faces around x/y", default = 5 )
+    payres= IntProperty(name="Z resolution",  min = 3, max = 32,\
+           description = "number of faces in z direction", default = 5 )
+    paxsz= FloatProperty(name="Scale x/y", min = 0.001, max = 10,\
+           description = "scale in x/y direction", default = 0.30)
+    paysz= FloatProperty(name="Scale z", min = 0.001, max = 10,\
+           description = "scale in z direction",	default = 1 )
+    paxell= FloatProperty(name="Stretch x", min = 0.001, max = 4,\
+           description = "stretch in x direction",	default = 1 )
+    pagap= FloatProperty(name="Gap", min = -2, max = 2,\
+           description = "shrink in % around radius",	default = 1 )
+    pagphase= FloatProperty(name="Phase", min = -4, max = 4,\
+           description = "rotate around pivot x/y",	default = 0 )
 #Torus            
     ures= IntProperty(name="ures",min = 3, max = 32,\
            description = "u resolution", default = 8 )
@@ -234,13 +244,13 @@
     buellipse= FloatProperty(name="buellipse", min = 0.001, max = 4,  default = 1 )
     bvellipse= FloatProperty(name="bvellipse", min = 0.001, max = 4,  default = 1 )
 #Grid    
-    grxres = IntProperty(name="X res", min = 2, soft_max = 10, max = 20,\
+    grxres = IntProperty(name="X resolution", min = 2, soft_max = 10, max = 20,\
                          description = "x resolution", default = 5 )
-    gryres = IntProperty(name="Y res",min = 2, soft_min = 2, soft_max=10, max = 20,\
+    gryres = IntProperty(name="Y resolution",min = 2, soft_min = 2, soft_max=10, max = 20,\
                          description = "y resolution", default = 2)
-    grxsz = FloatProperty(name = "X size", min = 1, soft_min=0.01, soft_max=5,max = 10,\
+    grxsz = FloatProperty(name = "X size", min = 1, soft_min=0.01, soft_max=5, max = 10,\
                          description = "x size", default = 2.0)
-    grysz = FloatProperty(name="Y size",min = 1, soft_min=0.01, soft_max=5,max = 10,\
+    grysz = FloatProperty(name="Y size",min = 1, soft_min=0.01, soft_max=5, max = 10,\
                          description = "y size", default = 1.0)
 #for ???
 #PKHG_TODO_??? what means cart



More information about the Bf-extensions-cvs mailing list