mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-20 21:27:52 -06:00
Force using of monotonic infill pattern for internal solid infill. (#218)
* Force using of monotonic infill pattern for internal solid infill to get rid of redundant gap fills. * Fix an issue "Patterntype for Solid and top layer #134"
This commit is contained in:
parent
5692e02c54
commit
ba72d1731b
2 changed files with 2 additions and 2 deletions
|
@ -165,7 +165,7 @@ std::vector<SurfaceFill> group_fills(const Layer &layer)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if(region_config.top_surface_pattern == ipMonotonic || region_config.top_surface_pattern == ipMonotonicLine)
|
if(region_config.top_surface_pattern == ipMonotonic || region_config.top_surface_pattern == ipMonotonicLine)
|
||||||
params.pattern = region_config.top_surface_pattern;
|
params.pattern = ipMonotonic;
|
||||||
else
|
else
|
||||||
params.pattern = ipRectilinear;
|
params.pattern = ipRectilinear;
|
||||||
}
|
}
|
||||||
|
|
|
@ -3886,7 +3886,7 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description,
|
||||||
gcode += m_writer.extrude_to_xy(
|
gcode += m_writer.extrude_to_xy(
|
||||||
this->point_to_gcode(line.b),
|
this->point_to_gcode(line.b),
|
||||||
e_per_mm * line_length,
|
e_per_mm * line_length,
|
||||||
comment);
|
comment, path.is_force_no_extrusion());
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// BBS: start to generate gcode from arc fitting data which includes line and arc
|
// BBS: start to generate gcode from arc fitting data which includes line and arc
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue