Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2011-09-19 19:08:06 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2011-09-19 19:08:06 +0400
commit1d1482044b46c98f86c33945a1bd1cf4edc7bb36 (patch)
tree795f6b4344018f9193e6beb954d5c74396c19012 /add_mesh_extra_objects
parent0dd81203a3982e55af012cfcc9a232c78ce631b9 (diff)
/trunk: Removed final points in UI strings and messages.
Plus a few styling enhancements. [[Split portion of a mixed commit.]]
Diffstat (limited to 'add_mesh_extra_objects')
-rw-r--r--add_mesh_extra_objects/add_mesh_3d_function_surface.py16
-rw-r--r--add_mesh_extra_objects/add_mesh_extra_objects.py4
-rw-r--r--add_mesh_extra_objects/add_mesh_gemstones.py8
3 files changed, 14 insertions, 14 deletions
diff --git a/add_mesh_extra_objects/add_mesh_3d_function_surface.py b/add_mesh_extra_objects/add_mesh_3d_function_surface.py
index 8965a820..01560311 100644
--- a/add_mesh_extra_objects/add_mesh_3d_function_surface.py
+++ b/add_mesh_extra_objects/add_mesh_3d_function_surface.py
@@ -239,24 +239,24 @@ class AddZFunctionSurface(bpy.types.Operator):
default="1 - ( x**2 + y**2 )")
div_x = IntProperty(name="X Subdivisions",
- description="Number of vertices in x direction.",
+ description="Number of vertices in x direction",
default=16,
min=3,
max=256)
div_y = IntProperty(name="Y Subdivisions",
- description="Number of vertices in y direction.",
+ description="Number of vertices in y direction",
default=16,
min=3,
max=256)
size_x = FloatProperty(name="X Size",
- description="Size of the x axis.",
+ description="Size of the x axis",
default=2.0,
min=0.01,
max=100.0,
unit="LENGTH")
size_y = FloatProperty(name="Y Size",
- description="Size of the y axis.",
+ description="Size of the y axis",
default=2.0,
min=0.01,
max=100.0,
@@ -504,13 +504,13 @@ class AddXYZFunctionSurface(bpy.types.Operator):
default="sin(v)*(1+cos(u))*sin(v/8)")
range_u_min = FloatProperty(name="U min",
- description="Minimum U value. Lower boundary of U range.",
+ description="Minimum U value. Lower boundary of U range",
min=-100.00,
max=0.00,
default=0.00)
range_u_max = FloatProperty(name="U max",
- description="Maximum U value. Upper boundary of U range.",
+ description="Maximum U value. Upper boundary of U range",
min=0.00,
max=100.00,
default=2 * pi)
@@ -526,13 +526,13 @@ class AddXYZFunctionSurface(bpy.types.Operator):
default=True)
range_v_min = FloatProperty(name="V min",
- description="Minimum V value. Lower boundary of V range.",
+ description="Minimum V value. Lower boundary of V range",
min=-100.00,
max=0.00,
default=0.00)
range_v_max = FloatProperty(name="V max",
- description="Maximum V value. Upper boundary of V range.",
+ description="Maximum V value. Upper boundary of V range",
min=0.00,
max=100.00,
default=4 * pi)
diff --git a/add_mesh_extra_objects/add_mesh_extra_objects.py b/add_mesh_extra_objects/add_mesh_extra_objects.py
index c545056a..a90b7224 100644
--- a/add_mesh_extra_objects/add_mesh_extra_objects.py
+++ b/add_mesh_extra_objects/add_mesh_extra_objects.py
@@ -368,8 +368,8 @@ class AddSqorus(bpy.types.Operator):
max=1.99,
default=2.0 / 3.0)
subdivide = BoolProperty(name="Subdivide Outside",
- description="Enable to subdivide the faces on the outside." \
- " This results in equally spaced vertices.",
+ description="Enable to subdivide the faces on the outside " \
+ "(this results in equally spaced vertices)",
default=True)
def execute(self, context):
diff --git a/add_mesh_extra_objects/add_mesh_gemstones.py b/add_mesh_extra_objects/add_mesh_gemstones.py
index 02bc10f4..481ca8b5 100644
--- a/add_mesh_extra_objects/add_mesh_gemstones.py
+++ b/add_mesh_extra_objects/add_mesh_gemstones.py
@@ -286,7 +286,7 @@ class AddGem(bpy.types.Operator):
"""Add a diamond gem"""
bl_idname = "mesh.primitive_gem_add"
bl_label = "Add Gem"
- bl_description = "Create an offset faceted gem."
+ bl_description = "Create an offset faceted gem"
bl_options = {'REGISTER', 'UNDO'}
segments = IntProperty(name="Segments",
@@ -300,17 +300,17 @@ class AddGem(bpy.types.Operator):
max=9999.0,
default=1.0)
crown_radius = FloatProperty(name="Table Radius",
- description="Radius of the table(top).",
+ description="Radius of the table(top)",
min=0.01,
max=9999.0,
default=0.6)
crown_height = FloatProperty(name="Table height",
- description="Height of the top half.",
+ description="Height of the top half",
min=0.01,
max=9999.0,
default=0.35)
pavilion_height = FloatProperty(name="Pavilion height",
- description="Height of bottom half.",
+ description="Height of bottom half",
min=0.01,
max=9999.0,
default=0.8)