bugfix in pickMeshRayFaceWeight() in bpymodules/BPyMesh.py

This commit is contained in:
Remigiusz Fiedler 2008-12-14 18:39:58 +00:00
parent ba8ea9ec63
commit c794e13ba3

@ -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