Fix bug where extrusion detection on voided profiles was not reliable

This commit is contained in:
Dion Moult
2021-06-17 19:24:16 +10:00
parent 1b49a10a15
commit 2a2f4d692a
2 changed files with 16 additions and 7 deletions
@@ -82,6 +82,7 @@ class Usecase:
faces = [f for f in bm.faces if self.should_triangulate_face(f)]
bmesh.ops.triangulate(bm, faces=faces)
bm.to_mesh(mesh)
mesh.update()
bm.free()
del bm