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-08-21 15:23:18 +0300
committerHoward Trickey <howard.trickey@gmail.com>2020-08-21 15:23:18 +0300
commit481927d4d6e124af8f707cd9d8c97f9e8a127d0c (patch)
treef6ec6afdf9d8397603e78c3c906e0ccef4bcf0f8 /source/blender/bmesh/tools/bmesh_boolean.cc
parentde294bb3e27ca1e5a90c320ea2d737e6f5100a6b (diff)
Use an enum type for solver in boolean modifier.
This matches what was done in a previous commit for the tool. It makes it easier to associate a tooltip with each choice. For this branch, I have the default solver be the Exact one; when we merge to master, we will have to decide the best default. Make format caught a coouple other files, sorr for not doing those earlier.
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 e28414d7609..83a2abc58cb 100644
--- a/source/blender/bmesh/tools/bmesh_boolean.cc
+++ b/source/blender/bmesh/tools/bmesh_boolean.cc
@@ -21,9 +21,9 @@
*/
#include "BLI_array.hh"
-#include "BLI_mesh_boolean.hh"
#include "BLI_math.h"
#include "BLI_math_mpq.hh"
+#include "BLI_mesh_boolean.hh"
#include "BLI_mesh_intersect.hh"
#include "bmesh.h"