mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 23:46:24 -06:00
New inner-outer-inner/infill mode
This commit is contained in:
parent
ff2cf17a73
commit
e022c5ad5b
6 changed files with 25 additions and 13 deletions
|
@ -3304,7 +3304,8 @@ std::string GCode::extrude_loop(ExtrusionLoop loop, std::string description, dou
|
|||
if (!m_config.spiral_mode && description == "perimeter") {
|
||||
assert(m_layer != nullptr);
|
||||
bool is_outer_wall_first = m_config.wall_infill_order == WallInfillOrder::OuterInnerInfill
|
||||
|| m_config.wall_infill_order == WallInfillOrder::InfillOuterInner;
|
||||
|| m_config.wall_infill_order == WallInfillOrder::InfillOuterInner
|
||||
|| m_config.wall_infill_order == WallInfillOrder::InnerOuterInnerInfill;
|
||||
m_seam_placer.place_seam(m_layer, loop, is_outer_wall_first, this->last_pos());
|
||||
} else
|
||||
loop.split_at(last_pos, false);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue