[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [2740] branches/geodesic_domes/ geodesic_domes/third_domes_panel.py: more ui fixes, renaming, started tool tips, added back "Radius" to geodesic menu

Brendon Murphy meta.androcto1 at gmail.com
Tue Dec 6 11:58:07 CET 2011


Revision: 2740
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=2740
Author:   meta-androcto
Date:     2011-12-06 10:58:04 +0000 (Tue, 06 Dec 2011)
Log Message:
-----------
more ui fixes, renaming, started tool tips, added back "Radius" to geodesic menu
trying to match original tooltips where practical

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 09:30:36 UTC (rev 2739)
+++ branches/geodesic_domes/geodesic_domes/third_domes_panel.py	2011-12-06 10:58:04 UTC (rev 2740)
@@ -150,7 +150,7 @@
 
     geodesic_class = EnumProperty(
     name="Class",
-    description="which class ",
+    description="Subdivide Basic/Triacon",
     items=[("Class 1","Class 1","class one"),
            ("Class 2","Class 2","class two"),
            ],
@@ -245,15 +245,17 @@
     cart = IntProperty(name = "cart",min = 0, max = 2,  default = 0)
                          
     frequency = IntProperty(name="frequency", min = 1, max = 8,\
-                           description ="influences subdivisions", default = 1 )
+                           description ="subdivide base triangles", default = 1 )
     eccentricity = FloatProperty(name = "eccentricity",  min = 0.01 , max = 4,\
-                 description = "thicknes x-direction", default = 1 )
+                 description = "scaling in x/y dimension", default = 1 )
     squish = FloatProperty(name = "squish",min = 0.01, soft_max = 4, max = 10,\
-                 description = "height of object",  default = 1 )
-    radius = FloatProperty(name = "radius",min = 0.01, max = 10, default = 1 )
+                 description = "scaling in z dimension",  default = 1 )
+    radius = FloatProperty(name = "radius",min = 0.01, soft_max = 4, max = 10, default = 1 )
 
-    squareness = FloatProperty(name="squareness", min = 0.1, max = 5, default = 2 )
-    squarez = FloatProperty(name="squarez", min = 0.1, soft_max = 5, max = 10, default = 2 )
+    squareness = FloatProperty(name="squareness", min = 0.1, max = 5,\
+                 description = "test", default = 2 )
+    squarez = FloatProperty(name="squarez", min = 0.1, soft_max = 5, max = 10,\
+                 description = "test", default = 2 )
     baselevel = IntProperty(name="baselevel", default = 5 )
     dual = BoolProperty(name="dual", description = "toggle for dual object", default = False)
     rotxy = FloatProperty(name="rotxy", min= -4, max = 4, default = 0 )
@@ -334,8 +336,9 @@
                 col.label("Geodesic Object Parameters:")
                 row = layout.row()
                 row.prop(self,"frequency")
-#                row.prop(self,"baselevel")
                 row = layout.row()
+                row.prop(self,"radius")
+                row = layout.row()
                 row.prop(self,"eccentricity")
                 row = layout.row()
                 row.prop(self,"squish")
@@ -350,7 +353,7 @@
                 row = layout.row()
                 row.prop(self,"dual")
             elif tmp == 'Torus':
-                col.label("Torus")
+                col.label("Torus Parameters")
                 row = layout.row()
                 row.prop(self, "ures")
                 row.prop(self, "vres")
@@ -380,38 +383,45 @@
                 row.prop(self, "vtwist")
                 row = layout.row()
             elif tmp == 'Sphere':
-                col.label("Sphere")
+                col.label("Sphere Parameters")
 #???                row = layout.row()
 #PKHG_NOT_USED???                row.prop(self, "bradius")
                 row = layout.row()
                 row.prop(self,"bures")
+                row = layout.row()
                 row.prop(self,"bvres")
                 row = layout.row()
                 row.prop(self,"burad")
                 row = layout.row()                
                 row.prop(self,"bupart")
+                row = layout.row()
                 row.prop(self,"buphase")
                 row = layout.row()
                 row.prop(self,"bvpart")
+                row = layout.row()
                 row.prop(self,"bvphase")
                 row = layout.row()
                 row.prop(self,"buellipse")
+                row = layout.row()
                 row.prop(self,"bvellipse")
             elif tmp == 'Parabola':
-                col.label("Parabola")
+                col.label("Parabola Parameters")
                 row = layout.row()
                 row.prop(self, "paxres")
+                row = layout.row()
                 row.prop(self, "payres")
                 row = layout.row()
                 row.prop(self, "paxsz")
+                row = layout.row()
                 row.prop(self, "paysz")
                 row = layout.row()
                 row.prop(self, "paxell")
                 row = layout.row()
                 row.prop(self, "pagap")
+                row = layout.row()
                 row.prop(self, "pagphase")
             elif tmp == 'Cylinder':
-                col.label("Cylinder")
+                col.label("Cylinder Parameters")
                 col.prop(self, "cyxres")
                 col.prop(self, "cyyres")
                 col.prop(self, "cyxsz")
@@ -420,12 +430,14 @@
                 col.prop(self, "cygap")
                 col.prop(self, "cygphase")
             elif tmp == 'Grid':
-                col.label("Grid")
+                col.label("Grid Parameters")
                 row = layout.row()
                 row.prop(self, "grxres")
+                row = layout.row()
                 row.prop(self, "gryres")
                 row = layout.row()
                 row.prop(self, "grxsz")
+                row = layout.row()
                 row.prop(self, "grysz")
 #            elif tmp == 'Apply sform': #sform apply
 #                col.label("Apply sform")



More information about the Bf-extensions-cvs mailing list