Skip to content

Commit

Permalink
POC - Do not slow down external perimeters to meet minimum layer time
Browse files Browse the repository at this point in the history
  • Loading branch information
igiannakas committed Apr 25, 2024
1 parent 0369a14 commit d84ff93
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/libslic3r/GCode/CoolingBuffer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,9 @@ std::string CoolingBuffer::apply_layer_cooldown(
}
else if (line->type & CoolingLine::TYPE_EXTRUDE_END) {
// Just remove this comment.
} else if (line->type & (CoolingLine::TYPE_ADJUSTABLE | CoolingLine::TYPE_EXTERNAL_PERIMETER | CoolingLine::TYPE_WIPE | CoolingLine::TYPE_HAS_F)) {
} else if(line->type & (CoolingLine::TYPE_EXTERNAL_PERIMETER )){

} else if (line->type & (CoolingLine::TYPE_ADJUSTABLE | CoolingLine::TYPE_WIPE | CoolingLine::TYPE_HAS_F)) {
// Find the start of a comment, or roll to the end of line.
const char *end = line_start;
for (; end < line_end && *end != ';'; ++ end);
Expand Down

0 comments on commit d84ff93

Please sign in to comment.