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:
Diffstat (limited to 'release/scripts/clean_mesh.py')
-rw-r--r--release/scripts/clean_mesh.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/release/scripts/clean_mesh.py b/release/scripts/clean_mesh.py
index 7fa3a496b34..be1fa460572 100644
--- a/release/scripts/clean_mesh.py
+++ b/release/scripts/clean_mesh.py
@@ -7,6 +7,28 @@ Group: 'Mesh'
Tooltip: 'Clean unused data from all selected meshes'
"""
+__author__ = "Campbell Barton"
+__url__ = ("blender", "elysiun")
+__version__ = "1.0 04/25/04"
+
+__bpydoc__ = """\
+This script cleans specific data from all selected meshes.
+
+Usage:
+
+Select the meshes to be cleaned and run this script. A pop-up will ask
+you what you want to remove:
+
+- Free standing vertices;<br>
+- Edges that are not part of any face;<br>
+- Edges below a threshold length;<br>
+- Faces below a threshold area;<br>
+- All of the above.
+
+After choosing one of the above alternatives, if your choice requires a
+threshold value you'll be prompted with a number pop-up to set it.
+"""
+
# $Id$
#
# --------------------------------------------------------------------------