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:
-rw-r--r--source/blender/blenlib/intern/mesh_boolean.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/blenlib/intern/mesh_boolean.cc b/source/blender/blenlib/intern/mesh_boolean.cc
index 3b128aba102..e92751efe72 100644
--- a/source/blender/blenlib/intern/mesh_boolean.cc
+++ b/source/blender/blenlib/intern/mesh_boolean.cc
@@ -2375,9 +2375,8 @@ static bool point_is_inside_shape(const IMesh &tm,
if (high_confidence) {
return (gwn > 0.9);
}
- else {
- return (gwn > 0.01);
- }
+
+ return (gwn > 0.01);
}
/**