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-09-04 14:51:05 +0300
committerbubnikv <bubnikv@gmail.com>2017-09-04 14:51:05 +0300
commit2c5304a520e3c8900408d247d795175ce21b7205 (patch)
tree643e3a4e3c1c27b8890d1522d78ffd1627e2474d /xs/src/libslic3r/GCode.hpp
parent29d9a1e810b092e60ffdc11631b976792e34923d (diff)
Implemented an initial priming line for a single-material print
on a Prusa Multi-Material printer.
Diffstat (limited to 'xs/src/libslic3r/GCode.hpp')
-rw-r--r--xs/src/libslic3r/GCode.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/xs/src/libslic3r/GCode.hpp b/xs/src/libslic3r/GCode.hpp
index da97fd23a..574ebcee2 100644
--- a/xs/src/libslic3r/GCode.hpp
+++ b/xs/src/libslic3r/GCode.hpp
@@ -90,6 +90,7 @@ public:
m_brim_done(false) {}
std::string prime(GCode &gcodegen);
+ static std::string WipeTowerIntegration::prime_single_color_print(const Print & /* print */, unsigned int initial_tool, GCode & /* gcodegen */);
void next_layer() { ++ m_layer_idx; m_tool_change_idx = 0; }
std::string tool_change(GCode &gcodegen, int extruder_id, bool finish_layer);
std::string finalize(GCode &gcodegen);