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:
authorHoward Trickey <howard.trickey@gmail.com>2020-07-20 12:28:42 +0300
committerHoward Trickey <howard.trickey@gmail.com>2020-07-20 12:28:42 +0300
commit833514b2cefc9c18234d6daf29c6974426405886 (patch)
tree70bb22a297afae207010cd5249b9db42d5ad7821 /source/blender/bmesh/tools/bmesh_boolean.cc
parent62dc64bdee17bd6946707ba418b47f41bbfec794 (diff)
Work in progress to treat nary boolean differently.
This will make it faster. There's one bug in it still, but committing progress.
Diffstat (limited to 'source/blender/bmesh/tools/bmesh_boolean.cc')
-rw-r--r--source/blender/bmesh/tools/bmesh_boolean.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/tools/bmesh_boolean.cc b/source/blender/bmesh/tools/bmesh_boolean.cc
index 655afc00f75..66261746f7c 100644
--- a/source/blender/bmesh/tools/bmesh_boolean.cc
+++ b/source/blender/bmesh/tools/bmesh_boolean.cc
@@ -197,7 +197,7 @@ static bool bmesh_boolean(BMesh *bm,
};
}
bool_optype op = static_cast<bool_optype>(boolean_mode);
- Mesh m_out = boolean_mesh(m_in, op, nshapes, shape_fn, &m_triangulated, &arena);
+ Mesh m_out = boolean_mesh(m_in, op, nshapes, shape_fn, use_self, &m_triangulated, &arena);
bool any_change = apply_mesh_output_to_bmesh(bm, m_out);
return any_change;
}