[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [20219] trunk/blender/release/scripts: Scripts

Ken Hughes khughes at pacific.edu
Fri May 15 23:27:13 CEST 2009


Revision: 20219
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=20219
Author:   khughes
Date:     2009-05-15 23:27:13 +0200 (Fri, 15 May 2009)

Log Message:
-----------
Scripts
-------
Fix some typos in script tooltips and descriptions-- no code changes.

Modified Paths:
--------------
    trunk/blender/release/scripts/envelope_symmetry.py
    trunk/blender/release/scripts/import_web3d.py
    trunk/blender/release/scripts/mesh_mirror_tool.py
    trunk/blender/release/scripts/mesh_poly_reduce_grid.py

Modified: trunk/blender/release/scripts/envelope_symmetry.py
===================================================================
--- trunk/blender/release/scripts/envelope_symmetry.py	2009-05-15 20:51:32 UTC (rev 20218)
+++ trunk/blender/release/scripts/envelope_symmetry.py	2009-05-15 21:27:13 UTC (rev 20219)
@@ -4,7 +4,7 @@
 Name: 'Envelope Symmetry'
 Blender: 234
 Group: 'Animation'
-Tooltip: 'Make envelope symetrical'
+Tooltip: 'Make envelope symmetrical'
 """
 
 __author__ = "Jonas Petersen"

Modified: trunk/blender/release/scripts/import_web3d.py
===================================================================
--- trunk/blender/release/scripts/import_web3d.py	2009-05-15 20:51:32 UTC (rev 20218)
+++ trunk/blender/release/scripts/import_web3d.py	2009-05-15 21:27:13 UTC (rev 20219)
@@ -85,7 +85,7 @@
 
 def vrmlFormat(data):
 	'''
-	Keep this as a valid vrml file, but format in a way we can pradict.
+	Keep this as a valid vrml file, but format in a way we can predict.
 	'''
 	# Strip all commends - # not in strings - warning multiline strings are ignored.
 	def strip_comment(l):

Modified: trunk/blender/release/scripts/mesh_mirror_tool.py
===================================================================
--- trunk/blender/release/scripts/mesh_mirror_tool.py	2009-05-15 20:51:32 UTC (rev 20218)
+++ trunk/blender/release/scripts/mesh_mirror_tool.py	2009-05-15 21:27:13 UTC (rev 20219)
@@ -3,7 +3,7 @@
 Name: 'Mirror Vertex Locations & Weight'
 Blender: 241
 Group: 'Mesh'
-Tooltip: 'Snap Verticies to X mirrord locations and weights.'
+Tooltip: 'Snap Verticies to X mirrored locations and weights.'
 """
 
 __author__ = "Campbell Barton aka ideasman42"
@@ -11,11 +11,11 @@
 __version__= '1.0'
 __bpydoc__= '''\
 This script is used to mirror vertex locations and weights
-It is usefull if you have a model that was made symetrical
+It is useful if you have a model that was made symmetrical
 but has verts that have moved from their mirrored locations slightly,
-casuing blenders X-Mirror options not to work.
+causing blenders X-Mirror options not to work.
 
-Weights can be mirrored too, this is usefull if you want to model 1 side of a mesh, copy the mesh and flip it.
+Weights can be mirrored too, this is useful if you want to model 1 side of a mesh, copy the mesh and flip it.
 You can then use this script to mirror to the copy, even creating new flipped vertex groups, renaming group name left to right or .L to .R
 
 Vertex positions are mirrored by doing a locational lookup,

Modified: trunk/blender/release/scripts/mesh_poly_reduce_grid.py
===================================================================
--- trunk/blender/release/scripts/mesh_poly_reduce_grid.py	2009-05-15 20:51:32 UTC (rev 20218)
+++ trunk/blender/release/scripts/mesh_poly_reduce_grid.py	2009-05-15 21:27:13 UTC (rev 20219)
@@ -3,7 +3,7 @@
 Name: 'Poly Reduce Selection (Unsubsurf)'
 Blender: 245
 Group: 'Mesh'
-Tooltip: 'pradictable mesh simplifaction maintaining face loops'
+Tooltip: 'predictable mesh simplifaction maintaining face loops'
 """
 
 from Blender import Scene, Mesh, Window, sys
@@ -50,7 +50,7 @@
 				
 	for edkey, count in edge_count.iteritems():
 		
-		# Ignore verts that connect to edges with more then 2 faces.
+		# Ignore verts that connect to edges with more than 2 faces.
 		if count != 2:
 			vert_faces[edkey[0]] = None
 			vert_faces[edkey[1]] = None





More information about the Bf-blender-cvs mailing list