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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-09-12 17:25:15 +0300
committerbubnikv <bubnikv@gmail.com>2016-09-12 17:25:15 +0300
commitf518e0675c5672215c9543dae36a068f7c56b4c4 (patch)
treecd5c4574036d40392a376f6e547d22e190adacc6 /xs/src/libslic3r/PerimeterGenerator.cpp
parent73cbb4b5dceab3e39b0a5d92d27c1fe52f3b3116 (diff)
Initial commit of the new Pressure Equalizer, the EdgeGrid
signed distance field structure. The EdgeGrid is used to avoid placing the seams on overhangs.
Diffstat (limited to 'xs/src/libslic3r/PerimeterGenerator.cpp')
-rw-r--r--xs/src/libslic3r/PerimeterGenerator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xs/src/libslic3r/PerimeterGenerator.cpp b/xs/src/libslic3r/PerimeterGenerator.cpp
index 7bb207e00..e9153923f 100644
--- a/xs/src/libslic3r/PerimeterGenerator.cpp
+++ b/xs/src/libslic3r/PerimeterGenerator.cpp
@@ -235,7 +235,7 @@ PerimeterGenerator::process()
// append perimeters for this slice as a collection
if (!entities.empty())
this->loops->append(entities);
- }
+ } // for each loop of an island
// fill gaps
if (!gaps.empty()) {
@@ -311,7 +311,7 @@ PerimeterGenerator::process()
for (ExPolygons::const_iterator ex = expp.begin(); ex != expp.end(); ++ex)
this->fill_surfaces->surfaces.push_back(Surface(stInternal, *ex)); // use a bogus surface type
}
- }
+ } // for each island
}
ExtrusionEntityCollection