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>2006-06-04 13:35:35 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-06-04 13:35:35 +0400
commit73e5693bea97056467aff99ad816a2c1173856d2 (patch)
treec8679d9cc940a7d5c1ea3a03343583c5a257fc51 /release/scripts
parent91181b0e633bf3edc917f708a8a61a9aef9b9613 (diff)
Fixed mistake in calculating the collapse position (surprising it worked as well as it did)
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/bpymodules/BPyMesh_redux.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/release/scripts/bpymodules/BPyMesh_redux.py b/release/scripts/bpymodules/BPyMesh_redux.py
index 6fc9e0f890f..0ffbc313e41 100644
--- a/release/scripts/bpymodules/BPyMesh_redux.py
+++ b/release/scripts/bpymodules/BPyMesh_redux.py
@@ -226,14 +226,14 @@ def redux(ob, REDUX=0.5, BOUNDRY_WEIGHT=2.0, REMOVE_DOUBLES=False, FACE_AREA_WEI
# if the edge is flipped from its order in the face then we need to flip the order indicies.
if cfa.verts[i]==ced.v1: i1,i2 = i, i-1
else: i1,i2 = i-1, i
-
- if DO_UV:
- ced.uv1.append( cfa.orig_uv[i1] )
- ced.uv2.append( cfa.orig_uv[i2] )
-
- if DO_VCOL:
- ced.col1.append( cfa.orig_col[i1] )
- ced.col2.append( cfa.orig_col[i2] )
+
+ if DO_UV:
+ ced.uv1.append( cfa.orig_uv[i1] )
+ ced.uv2.append( cfa.orig_uv[i2] )
+
+ if DO_VCOL:
+ ced.col1.append( cfa.orig_col[i1] )
+ ced.col2.append( cfa.orig_col[i2] )
# PERIMITER
@@ -291,8 +291,8 @@ def redux(ob, REDUX=0.5, BOUNDRY_WEIGHT=2.0, REMOVE_DOUBLES=False, FACE_AREA_WEI
def ed_set_collapse_loc(ced):
v1co= ced.v1.co
v2co= ced.v2.co
- v1no= ced.v1.co
- v2no= ced.v2.co
+ v1no= ced.v1.no
+ v2no= ced.v2.no
# Basic operation, works fine but not as good as predicting the best place.
#between= ((v1co*w1) + (v2co*w2))