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>2009-10-14 14:33:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-10-14 14:33:27 +0400
commit0b1957793052e4b3b3d195a1562c8ff7706074e4 (patch)
treee7de5fda31d3fcaa64055854dcba879952d8cc31 /release
parentd38940676685912b426cb32ae40c25a9960af242 (diff)
skin/loft was broken, was passing short[2] as float[2]
Diffstat (limited to 'release')
-rw-r--r--release/scripts/io/mesh_skin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/io/mesh_skin.py b/release/scripts/io/mesh_skin.py
index 5487b6ba10b..79b78c15274 100644
--- a/release/scripts/io/mesh_skin.py
+++ b/release/scripts/io/mesh_skin.py
@@ -227,8 +227,8 @@ def mesh_faces_extend(me, faces):
me.add_geometry(0, 0, new_facetot)
tot = orig_facetot+new_facetot
me_faces = me.faces
- i= orig_facetot
- while i < tot:
+ i= 0
+ while i < new_facetot:
f = [v.index for v in faces[i]]
if len(f)==4 and f[3]==0: