Fix T63344: broken topology after sculpting with clay strips brush

Differential Revision: https://developer.blender.org/D4710
This commit is contained in:
Pablo Dobarro 2019-04-25 14:07:30 +02:00 committed by Brecht Van Lommel
parent deb9d03fc9
commit 9408023a81

@ -3455,6 +3455,10 @@ static void do_clay_strips_brush(Sculpt *sd, Object *ob, PBVHNode **nodes, int t
return;
}
if (is_zero_v3(ss->cache->grab_delta_symmetry)) {
return;
}
mul_v3_v3v3(temp, area_no_sp, ss->cache->scale);
mul_v3_fl(temp, displace);
add_v3_v3(area_co, temp);