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>2016-07-14 19:46:04 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-07-14 19:46:04 +0300
commit902d4c92ac3d0146984c459ba95f75f72324f675 (patch)
treeac7ed5bb4ec45abea96da57e940d7161a7a99921 /source/blender/modifiers
parent83435182720fa815194f7aed90cdf4ad81f50a81 (diff)
Use BMesh solver for new boolean modifiers
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_boolean.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/modifiers/intern/MOD_boolean.c b/source/blender/modifiers/intern/MOD_boolean.c
index 693db961950..da0f5aa3923 100644
--- a/source/blender/modifiers/intern/MOD_boolean.c
+++ b/source/blender/modifiers/intern/MOD_boolean.c
@@ -75,6 +75,7 @@ static void initData(ModifierData *md)
{
BooleanModifierData *bmd = (BooleanModifierData *)md;
+ bmd->solver = eBooleanModifierSolver_BMesh;
bmd->double_threshold = 1e-6f;
}