BMesh: Add option to use BMesh boolean modifier
This uses a bmesh-intersection, BLI_kdtree and watertight intersections to perform boolean operations. For now keep both BMesh and Carve booleans usable at once for testing & bug reports, however we plan to phase out Carve by next release.
This commit is contained in:
@@ -156,6 +156,15 @@ class DATA_PT_modifiers(ModifierButtonsPanel, Panel):
|
||||
col.label(text="Object:")
|
||||
col.prop(md, "object", text="")
|
||||
|
||||
layout.prop(md, "use_bmesh")
|
||||
if md.use_bmesh:
|
||||
box = layout.box()
|
||||
box.label("BMesh Options:")
|
||||
box.prop(md, "use_bmesh_separate")
|
||||
box.prop(md, "use_bmesh_dissolve")
|
||||
box.prop(md, "use_bmesh_connect_regions")
|
||||
box.prop(md, "threshold")
|
||||
|
||||
def BUILD(self, layout, ob, md):
|
||||
split = layout.split()
|
||||
|
||||
|
Reference in New Issue
Block a user