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>2017-06-30 20:07:14 +0300
committerbubnikv <bubnikv@gmail.com>2017-06-30 20:07:14 +0300
commitbf9027ff2de3a8439ef4f4b0af6110717f59747d (patch)
tree30bbcaf68a7596dda1be276c2dcf5746e44e657f /xs/src/libslic3r/GCode.hpp
parent115deee252ee0c6aff0745962ba07fa62260b854 (diff)
Fix of a cooling buffer over multiple extruders.
Diffstat (limited to 'xs/src/libslic3r/GCode.hpp')
-rw-r--r--xs/src/libslic3r/GCode.hpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/xs/src/libslic3r/GCode.hpp b/xs/src/libslic3r/GCode.hpp
index c09ee68a4..51ab5eb84 100644
--- a/xs/src/libslic3r/GCode.hpp
+++ b/xs/src/libslic3r/GCode.hpp
@@ -143,8 +143,6 @@ public:
// For Perl bindings, to be used exclusively by unit tests.
unsigned int layer_count() const { return m_layer_count; }
void set_layer_count(unsigned int value) { m_layer_count = value; }
- float elapsed_time() const { return m_writer.elapsed_time()->total; }
- void set_elapsed_time(float value) { std::vector<unsigned int> extruders; extruders.push_back(0); m_writer.set_extruders(extruders); m_writer.set_extruder(0); m_writer.elapsed_time()->total = value; }
void apply_print_config(const PrintConfig &print_config);
protected: