patch [#25978] mathutils fixes for bpy_types.py and vertexpaint_dirt.py

from Filiciss Muhgue (filiciss)
This commit is contained in:
Campbell Barton 2011-02-11 12:30:17 +00:00
parent 875f554cff
commit c50bf404d2

@ -65,7 +65,7 @@ def applyVertexDirt(me, blur_iterations, blur_strength, clamp_dirt, clamp_clean,
# get the direction of the vectors between the vertex and it's connected vertices
for c in con[i]:
vec += (me.vertices[c].co - co).normalize()
vec += (me.vertices[c].co - co).normalized()
# normalize the vector by dividing by the number of connected verts
tot_con = len(con[i])