[Bf-extensions-cvs] SVN commit: /data/svn/bf-extensions [3570] trunk/py/scripts/addons: Spell and typo fixes.

Bastien Montagne montagne29 at wanadoo.fr
Tue Jul 3 21:10:59 CEST 2012


Revision: 3570
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-extensions&revision=3570
Author:   mont29
Date:     2012-07-03 19:10:59 +0000 (Tue, 03 Jul 2012)
Log Message:
-----------
Spell and typo fixes.

Modified Paths:
--------------
    trunk/py/scripts/addons/add_curve_ivygen.py
    trunk/py/scripts/addons/io_mesh_ply/__init__.py
    trunk/py/scripts/addons/mocap/__init__.py

Modified: trunk/py/scripts/addons/add_curve_ivygen.py
===================================================================
--- trunk/py/scripts/addons/add_curve_ivygen.py	2012-07-03 17:37:40 UTC (rev 3569)
+++ trunk/py/scripts/addons/add_curve_ivygen.py	2012-07-03 19:10:59 UTC (rev 3570)
@@ -109,7 +109,7 @@
                     node = root.ivyNodes[i]
                     nodeNext = root.ivyNodes[i + 1]
 
-                    # Find the weight and normalise the smooth adhesion vector
+                    # Find the weight and normalize the smooth adhesion vector
                     weight = pow(node.length * prevIvyLength, 0.7)
 
                     # Calculate the ground ivy and the new weight
@@ -276,7 +276,7 @@
         self.maxAdhesionDistance = maxAdhesionDistance
         self.maxLength = 0.0
 
-        # Normalise all the weights only on intialisation
+        # Normalize all the weights only on intialisation
         sum = self.primaryWeight + self.randomWeight + self.adhesionWeight
         self.primaryWeight /= sum
         self.randomWeight /= sum
@@ -312,7 +312,7 @@
             # Set the primary direction from the last node
             primaryVector = prevIvy.primaryDir
 
-            # Make the random vector and normalise
+            # Make the random vector and normalize
             randomVector = Vector((rand_val() - 0.5, rand_val() - 0.5,
                                    rand_val() - 0.5)) + Vector((0, 0, 0.2))
             randomVector.normalize()

Modified: trunk/py/scripts/addons/io_mesh_ply/__init__.py
===================================================================
--- trunk/py/scripts/addons/io_mesh_ply/__init__.py	2012-07-03 17:37:40 UTC (rev 3569)
+++ trunk/py/scripts/addons/io_mesh_ply/__init__.py	2012-07-03 19:10:59 UTC (rev 3570)
@@ -81,8 +81,8 @@
 
 
 class ExportPLY(bpy.types.Operator, ExportHelper):
-    """Export a single object as a stanford PLY with normals, """ \
-    """colours and texture coordinates"""
+    """Export a single object as a Stanford PLY with normals, """ \
+    """colors and texture coordinates"""
     bl_idname = "export_mesh.ply"
     bl_label = "Export PLY"
 

Modified: trunk/py/scripts/addons/mocap/__init__.py
===================================================================
--- trunk/py/scripts/addons/mocap/__init__.py	2012-07-03 17:37:40 UTC (rev 3569)
+++ trunk/py/scripts/addons/mocap/__init__.py	2012-07-03 19:10:59 UTC (rev 3570)
@@ -433,7 +433,7 @@
     # has an action for retargeting
     """Retarget animation from selected armature to active armature"""
     bl_idname = "mocap.retarget"
-    bl_label = "Retarget active action from Performer to Enduser"
+    bl_label = "Retarget active action from Performer to End-user"
     bl_options = {'REGISTER', 'UNDO'}
 
     def execute(self, context):
@@ -471,7 +471,7 @@
     #Operator for saving mapping to enduser armature
     """Save mapping to active armature (for future retargets)"""
     bl_idname = "mocap.savemapping"
-    bl_label = "Save user generated mapping from Performer to Enduser"
+    bl_label = "Save user generated mapping from Performer to End-user"
 
     def execute(self, context):
         enduser_obj = bpy.context.active_object
@@ -494,7 +494,7 @@
     """Load saved mapping from active armature"""
     #Operator for loading mapping to enduser armature
     bl_idname = "mocap.loadmapping"
-    bl_label = "Load user generated mapping from Performer to Enduser"
+    bl_label = "Load user generated mapping from Performer to End-user"
 
     def execute(self, context):
         enduser_obj = bpy.context.active_object
@@ -780,7 +780,7 @@
     #Operator which calls heurisitic function to guess mapping between 2 armatures
     """Attempt to auto figure out hierarchy mapping"""
     bl_idname = "mocap.guessmapping"
-    bl_label = "Attemp to auto figure out hierarchy mapping"
+    bl_label = "Attempt to auto figure out hierarchy mapping"
 
     def execute(self, context):
         enduser_obj = bpy.context.active_object



More information about the Bf-extensions-cvs mailing list