fix for missing normalize with recent optimizations.

This commit is contained in:
Campbell Barton 2013-05-28 12:00:36 +00:00
parent 285137cefb
commit 0559630c7e

@ -1963,6 +1963,7 @@ static void mesh_calc_normals_poly_accum(MPoly *mp, MLoop *ml,
/* Unrelated to normalize, calcualte edge-vector */
sub_v3_v3v3(edgevecbuf[i_prev], v_prev, v_curr);
normalize_v3(edgevecbuf[i_prev]);
i_prev = i;
v_prev = v_curr;