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:
authorCampbell Barton <ideasman42@gmail.com>2007-12-01 22:19:49 +0300
committerCampbell Barton <ideasman42@gmail.com>2007-12-01 22:19:49 +0300
commitf06872d493dec309c963908e0079b454f4e38110 (patch)
tree669b011bcc620fe322d1cb49ec48331588eb26fb /release
parent4ba215478f9e1d31b13ae24c4886dabc7c2d8eb1 (diff)
mesh_edges2curves.py - fix for duplicate points
renderwin.c - stamp info in openGL render
Diffstat (limited to 'release')
-rw-r--r--release/scripts/mesh_edges2curves.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release/scripts/mesh_edges2curves.py b/release/scripts/mesh_edges2curves.py
index 84f3cc41779..f65eccae9a4 100644
--- a/release/scripts/mesh_edges2curves.py
+++ b/release/scripts/mesh_edges2curves.py
@@ -12,7 +12,7 @@ __version__ = "1.0 2006/02/08"
__bpydoc__ = """\
Edges to Curves
-This script converts open and closed edge loops into polylines
+This script converts open and closed edge loops into curve polylines
Supported:<br>
Polylines where each vert has no more then 2 edges attached to it.
@@ -129,6 +129,7 @@ def mesh2polys():
v= poly[vIdx]
cu.appendNurb([v.co.x, v.co.y, v.co.z, w, t])
+ vIdx += 1
cu[i].type= 0 # Poly Line
# Close the polyline if its closed.