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-12-08 21:02:16 +0300
committerbubnikv <bubnikv@gmail.com>2016-12-08 21:02:16 +0300
commit126126cc789d8c9b5c435a3b80cbb37287256077 (patch)
treeb957d6af8932a771dadcf9691b3c83f661e98a68 /xs/src/libslic3r/ExtrusionSimulator.cpp
parent5d18657ac5546022421da5fe559436a876ad9029 (diff)
Fixes after the merge of changes by @alexrj.
Diffstat (limited to 'xs/src/libslic3r/ExtrusionSimulator.cpp')
-rw-r--r--xs/src/libslic3r/ExtrusionSimulator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/ExtrusionSimulator.cpp b/xs/src/libslic3r/ExtrusionSimulator.cpp
index 0c86f073e..3752caed4 100644
--- a/xs/src/libslic3r/ExtrusionSimulator.cpp
+++ b/xs/src/libslic3r/ExtrusionSimulator.cpp
@@ -803,7 +803,7 @@ void gcode_spread_points(
const Cell &cell = cells[i];
acc[cell.idx.y()][cell.idx.x()] = (1.f - cell.fraction_covered) * cell.volume + cell.fraction_covered * cell.area * height_avg;
}
- } else if (simulationType == ExtrusionSimulationSpreadExcess) {
+ } else if (simulationType == Slic3r::ExtrusionSimulationSpreadExcess) {
// The volume under the circle does not fit.
// 1) Fill the underfilled cells and remove them from the list.
float volume_borrowed_total = 0.;