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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Hughes <khughes@pacific.edu>2009-05-16 01:27:13 +0400
committerKen Hughes <khughes@pacific.edu>2009-05-16 01:27:13 +0400
commit83006e51f845b2c5c36539373e036be3efaddc16 (patch)
treeeb3ecc83f7e972de3789daa3ab191e6f73fce892 /release
parentef8f92ffe63d76ec40d28f31660b22e12e4650be (diff)
Scripts
------- Fix some typos in script tooltips and descriptions-- no code changes.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/envelope_symmetry.py2
-rw-r--r--release/scripts/import_web3d.py2
-rw-r--r--release/scripts/mesh_mirror_tool.py8
-rw-r--r--release/scripts/mesh_poly_reduce_grid.py4
4 files changed, 8 insertions, 8 deletions
diff --git a/release/scripts/envelope_symmetry.py b/release/scripts/envelope_symmetry.py
index a52e622a65b..a72e8c060b4 100644
--- a/release/scripts/envelope_symmetry.py
+++ b/release/scripts/envelope_symmetry.py
@@ -4,7 +4,7 @@
Name: 'Envelope Symmetry'
Blender: 234
Group: 'Animation'
-Tooltip: 'Make envelope symetrical'
+Tooltip: 'Make envelope symmetrical'
"""
__author__ = "Jonas Petersen"
diff --git a/release/scripts/import_web3d.py b/release/scripts/import_web3d.py
index fc3b5262376..a5547506dc7 100644
--- a/release/scripts/import_web3d.py
+++ b/release/scripts/import_web3d.py
@@ -85,7 +85,7 @@ def imageConvertCompat(path):
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):
diff --git a/release/scripts/mesh_mirror_tool.py b/release/scripts/mesh_mirror_tool.py
index 33ce6936c7f..8e22e26cd53 100644
--- a/release/scripts/mesh_mirror_tool.py
+++ b/release/scripts/mesh_mirror_tool.py
@@ -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 @@ __url__ = ["www.blender.org", "blenderartists.org", "www.python.org"]
__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,
diff --git a/release/scripts/mesh_poly_reduce_grid.py b/release/scripts/mesh_poly_reduce_grid.py
index 3741a47723a..2903909027a 100644
--- a/release/scripts/mesh_poly_reduce_grid.py
+++ b/release/scripts/mesh_poly_reduce_grid.py
@@ -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 @@ def my_mesh_util(me):
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