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

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2013-04-08 14:28:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-08 14:28:57 +0400
commitc86f49334aae34afffac521c57b99ee449519609 (patch)
treecfb67d3b2592327db1e3466a75a162b7cb1af0f2 /object_print3d_utils/mesh_helpers.py
parentf9f9415035b4c9a246b1aefee6eb80ecf1897979 (diff)
fix for intersections (bad limits)
Diffstat (limited to 'object_print3d_utils/mesh_helpers.py')
-rw-r--r--object_print3d_utils/mesh_helpers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/object_print3d_utils/mesh_helpers.py b/object_print3d_utils/mesh_helpers.py
index 82db96bf..720a8256 100644
--- a/object_print3d_utils/mesh_helpers.py
+++ b/object_print3d_utils/mesh_helpers.py
@@ -144,8 +144,8 @@ def bmesh_check_self_intersect_object(obj):
faces_error = set()
- EPS_NORMAL = 0.0001
- EPS_CENTER = 0.00001 # should always be bigger
+ EPS_NORMAL = 0.000001
+ EPS_CENTER = 0.01 # should always be bigger
for ed in me_tmp.edges:
v1i, v2i = ed.vertices