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:
authorbubnikv <bubnikv@gmail.com>2020-01-14 12:31:18 +0300
committerbubnikv <bubnikv@gmail.com>2020-01-14 12:31:18 +0300
commit8bfc986fa7da5dc5676580a4191b0550f3d9e2ab (patch)
treecf574426ae35b9b882846b45ff76bc65f104c69a /src/libslic3r/Extruder.hpp
parent79d7a0130f687a3814d5061cafdf8501338909c0 (diff)
Refactoring of GCode::process_layer().
Refactoring of GCode export of color changes, extruder switches etc, so that the "color change" like extruder switches are applied first at the Wipe Tower / G-code export, so that adding / removing an extruder switch at the G-code preview slider does not invalidate slicing.
Diffstat (limited to 'src/libslic3r/Extruder.hpp')
-rw-r--r--src/libslic3r/Extruder.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/libslic3r/Extruder.hpp b/src/libslic3r/Extruder.hpp
index df92bf84b..066a5f56d 100644
--- a/src/libslic3r/Extruder.hpp
+++ b/src/libslic3r/Extruder.hpp
@@ -48,9 +48,6 @@ public:
double retract_length_toolchange() const;
double retract_restart_extra_toolchange() const;
- // Constructor for a key object, to be used by the stdlib search functions.
- static Extruder key(unsigned int id) { return Extruder(id); }
-
private:
// Private constructor to create a key for a search in std::set.
Extruder(unsigned int id) : m_id(id) {}