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/knife.py')
-rw-r--r--release/scripts/knife.py26
1 files changed, 25 insertions, 1 deletions
diff --git a/release/scripts/knife.py b/release/scripts/knife.py
index f9f8aedf72b..c58c8b4dada 100644
--- a/release/scripts/knife.py
+++ b/release/scripts/knife.py
@@ -3,10 +3,34 @@
"""
Name: 'Blender Knife Tool'
Blender: 232
-Group: 'Mesh'
+Group: 'Object'
Tooltip: 'Cut selected mesh(es) along an active plane w/o creating doubles'
"""
+__author__ = ["Stefano <S68> Selleri", "Wim Van Hoydonck"]
+__url__ = ("blender", "elysiun")
+__version__ = "0.0.8a 03/31/04"
+
+__bpydoc__ = """\
+"Blender Knife Tool" uses the active mesh plane to cut all selected meshes.
+
+Usage:
+
+Create, resize and position a "cutting plane", which will be used to cut
+the mesh(es), then:
+
+- select mesh(es) to be cut;<br>
+- select cutting plane (it will be the active object);<br>
+- run this script from 3d View's "Object->Scripts" menu.
+
+Options:
+
+- edit object: knife creates new vertices in the selected mesh(es);<br>
+- create new object: knife duplicates objects and creates new vertices in the
+new objects;<br>
+- create two new objects: knife creates two new separate objects.
+"""
+
# $Id$
#
###################################################################