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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2018-01-18 11:15:04 +0300
committerEnrico Turri <enricoturri@seznam.cz>2018-01-18 11:15:04 +0300
commitd34f3ffc8320c6929db53233cd2e17d7dac11d01 (patch)
treec7f312091a03e398d7a7a5ca5d9ae0a2868ca9b7 /xs/src/libslic3r
parentad5fcce6e4fd172cb105a71b9ef658338d742f56 (diff)
Fix for #574, #413, #269, #262, #259, #230, #228, #206
Diffstat (limited to 'xs/src/libslic3r')
-rw-r--r--xs/src/libslic3r/TriangleMesh.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/xs/src/libslic3r/TriangleMesh.cpp b/xs/src/libslic3r/TriangleMesh.cpp
index 0dbbf5f8d..7afa4871c 100644
--- a/xs/src/libslic3r/TriangleMesh.cpp
+++ b/xs/src/libslic3r/TriangleMesh.cpp
@@ -197,10 +197,11 @@ TriangleMesh::repair() {
stl_fill_holes(&stl);
stl_clear_error(&stl);
}
-
- // normal_directions
- stl_fix_normal_directions(&stl);
-
+
+ // commenting out the following call fixes: #574, #413, #269, #262, #259, #230, #228, #206
+// // normal_directions
+// stl_fix_normal_directions(&stl);
+
// normal_values
stl_fix_normal_values(&stl);