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/raw_import.py')
-rw-r--r--release/scripts/raw_import.py15
1 files changed, 12 insertions, 3 deletions
diff --git a/release/scripts/raw_import.py b/release/scripts/raw_import.py
index d650d11a23c..13b2e187826 100644
--- a/release/scripts/raw_import.py
+++ b/release/scripts/raw_import.py
@@ -15,12 +15,21 @@ __version__ = "Part of IOSuite 0.5"
__bpydoc__ = """\
This script imports Raw Triangle File format files to Blender.
-Usage:
+The raw triangle format is very simple; it has no verts or faces lists.
+It's just a simple ascii text file with the vertices of each triangle
+listed on each line. There were some very old utilities (when the PovRay
+forum was in existence on CompuServe) that preformed operations on these
+files.
-Execute this script from the "File->Import" menu and choose a Raw file to
+Usage:<br>
+ Execute this script from the "File->Import" menu and choose a Raw file to
open.
-"""
+Notes:<br>
+ Generates the standard verts and faces lists, but without duplicate
+verts. Only *exact* duplicates are removed, there is no way to specify a
+tolerance.
+"""
# $Id$
#