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-05-19 20:24:21 +0300
committerbubnikv <bubnikv@gmail.com>2017-05-19 20:24:21 +0300
commit70db88dd90f741b89ad8b1ded7f4448864580e09 (patch)
treea3b57a077da3fc572910b103e6fb25d0e4ac0d7a /xs/src/libslic3r/GCode.hpp
parent8bd3dec331b32a3a403a891e0bfd9fcf5745e5db (diff)
Improved retract handling on bowden extruders:
Separated deretract speed from a retract speed, allowed a partial retract before wipe.
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 8abbdb167..91762237c 100644
--- a/xs/src/libslic3r/GCode.hpp
+++ b/xs/src/libslic3r/GCode.hpp
@@ -84,6 +84,7 @@ public:
private:
std::string travel_to(GCode &codegen, const WipeTower::xy &dest);
+ void prepare_wipe(GCode &gcodegen, const WipeTower::xy &current_position);
std::unique_ptr<WipeTower> m_impl;
bool m_brim_done;
};