Skip to content

Commit

Permalink
Orca Slicer default parameter tweaks (#5406)
Browse files Browse the repository at this point in the history
* gap_fill_target -> gftNowhere
z_hop_types -> zhtSlope

* ensure_vertical_shell_thickness -> evstModerate

* top_surface_pattern -> ipMonotonicLine
  • Loading branch information
SoftFever authored May 20, 2024
1 parent c161274 commit 0dbf610
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Top and bottom surfaces"));
def->enum_labels.push_back(L("Nowhere"));
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionEnum<GapFillTarget>(gftEverywhere));
def->set_default_value(new ConfigOptionEnum<GapFillTarget>(gftNowhere));


def = this->add("enable_overhang_bridge_fan", coBools);
Expand Down Expand Up @@ -1439,7 +1439,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Moderate"));
def->enum_labels.push_back(L("All"));
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionEnum<EnsureVerticalShellThickness>(EnsureVerticalShellThickness::evstAll));
def->set_default_value(new ConfigOptionEnum<EnsureVerticalShellThickness>(EnsureVerticalShellThickness::evstModerate));

auto def_top_fill_pattern = def = this->add("top_surface_pattern", coEnum);
def->label = L("Top surface pattern");
Expand All @@ -1462,7 +1462,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Hilbert Curve"));
def->enum_labels.push_back(L("Archimedean Chords"));
def->enum_labels.push_back(L("Octagram Spiral"));
def->set_default_value(new ConfigOptionEnum<InfillPattern>(ipMonotonic));
def->set_default_value(new ConfigOptionEnum<InfillPattern>(ipMonotonicLine));

def = this->add("bottom_surface_pattern", coEnum);
def->label = L("Bottom surface pattern");
Expand Down Expand Up @@ -3538,7 +3538,7 @@ def = this->add("filament_loading_speed", coFloats);
def->enum_labels.push_back(L("Slope"));
def->enum_labels.push_back(L("Spiral"));
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionEnumsGeneric{ ZHopType::zhtNormal });
def->set_default_value(new ConfigOptionEnumsGeneric{ ZHopType::zhtSlope });

def = this->add("retract_lift_above", coFloats);
def->label = L("Only lift Z above");
Expand Down

0 comments on commit 0dbf610

Please sign in to comment.