mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-04 15:00:36 +08:00
Differentiate between small perimeters and external perimeters in verbose gcode.
This commit is contained in:
parent
c058ae91d2
commit
88d24b763b
@ -426,7 +426,10 @@ GCode::extrude(ExtrusionLoop loop, std::string description, double speed)
|
||||
&& loop.length() <= SMALL_PERIMETER_LENGTH
|
||||
&& speed == -1)
|
||||
speed = this->config.get_abs_value("small_perimeter_speed");
|
||||
|
||||
description = "small perimeter";
|
||||
if (paths.front().role == erExternalPerimeter)
|
||||
description = std::string("external ") + description;
|
||||
|
||||
// extrude along the path
|
||||
std::string gcode;
|
||||
for (ExtrusionPaths::const_iterator path = paths.begin(); path != paths.end(); ++path)
|
||||
|
Loading…
x
Reference in New Issue
Block a user