mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-18 04:08:02 -06:00
Added a new switch: ensure_vertical_shell_thickness
This enables a zig-zag infill similar to Cura or Simplify3D on overhangs.
This commit is contained in:
parent
7d7f093120
commit
47cc9687a0
8 changed files with 30 additions and 6 deletions
|
@ -149,6 +149,13 @@ PrintConfigDef::PrintConfigDef()
|
|||
def->height = 120;
|
||||
def->default_value = new ConfigOptionString("M104 S0 ; turn off temperature\nG28 X0 ; home X axis\nM84 ; disable motors\n");
|
||||
|
||||
def = this->add("ensure_vertical_shell_thickness", coBool);
|
||||
def->label = "Ensure vertical shell thickness";
|
||||
def->category = "Layers and Perimeters";
|
||||
def->tooltip = "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers).";
|
||||
def->cli = "ensure-vertical-shell-thickness!";
|
||||
def->default_value = new ConfigOptionBool(false);
|
||||
|
||||
def = this->add("external_fill_pattern", coEnum);
|
||||
def->label = "Top/bottom fill pattern";
|
||||
def->category = "Infill";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue