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:
authorRemigiusz Fiedler <migius@gmx.net>2008-12-14 21:39:58 +0300
committerRemigiusz Fiedler <migius@gmx.net>2008-12-14 21:39:58 +0300
commitc794e13ba33f0bbc0d985489fa33777d845bd3a8 (patch)
tree19f4b396f9ab0d24d196d80513f3ec9412582615
parentba8ea9ec63c25b1ce134a846176f7bf252f4d487 (diff)
bugfix in pickMeshRayFaceWeight() in bpymodules/BPyMesh.py
-rw-r--r--release/scripts/bpymodules/BPyMesh.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/bpymodules/BPyMesh.py b/release/scripts/bpymodules/BPyMesh.py
index 415c2a12c69..6bbfaa463d0 100644
--- a/release/scripts/bpymodules/BPyMesh.py
+++ b/release/scripts/bpymodules/BPyMesh.py
@@ -479,7 +479,7 @@ def pickMeshRayFaceWeight(me, orig, rdir):
w0 = (l1+l2)
w1 = (l0+l2)
- w2 = (l1+l2)
+ w2 = (l1+l0)
totw= w0 + w1 + w2
w0=w0/totw