ooze prevention update: sync with PrusaSlicer

This commit is contained in:
SoftFever 2024-07-10 21:17:04 +08:00
parent d872c62256
commit c3f0b5e565
2 changed files with 16 additions and 56 deletions

View file

@ -43,14 +43,13 @@ class ConstPrintObjectPtrsAdaptor;
class OozePrevention {
public:
bool enable;
Points standby_points;
OozePrevention() : enable(false) {}
std::string pre_toolchange(GCode &gcodegen);
std::string post_toolchange(GCode &gcodegen);
private:
int _get_temp(GCode &gcodegen);
int _get_temp(const GCode &gcodegen) const;
};
class Wipe {