Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2015-12-11 12:24:39 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-12-11 12:24:39 +0300
commit8cd7b428774fedf16cd6164b60615666045fb1fc (patch)
tree969fee690c618bcd597826e2244d5d36917c1aba /release
parent8ae8b62a0ed148863e8b64480a0c15f1d068fbf5 (diff)
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.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_data_modifier.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/release/scripts/startup/bl_ui/properties_data_modifier.py b/release/scripts/startup/bl_ui/properties_data_modifier.py
index 58896e898c6..98570ca5280 100644
--- a/release/scripts/startup/bl_ui/properties_data_modifier.py
+++ b/release/scripts/startup/bl_ui/properties_data_modifier.py
@@ -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()