Skip to content

Commit

Permalink
Changed defaults for the perimeter/infill overlap (15-55%)
Browse files Browse the repository at this point in the history
and for the infill pattern (honeycomb->stars)
  • Loading branch information
bubnikv committed Feb 22, 2017
1 parent a4dd6c7 commit f7acb20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions xs/src/libslic3r/PrintConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ PrintConfigDef::PrintConfigDef()
def->enum_labels.push_back("Hilbert Curve");
def->enum_labels.push_back("Archimedean Chords");
def->enum_labels.push_back("Octagram Spiral");
def->default_value = new ConfigOptionEnum<InfillPattern>(ipHoneycomb);
def->default_value = new ConfigOptionEnum<InfillPattern>(ipStars);

def = this->add("first_layer_acceleration", coFloat);
def->label = "First layer";
Expand Down Expand Up @@ -605,7 +605,7 @@ PrintConfigDef::PrintConfigDef()
def->sidetext = "mm or %";
def->cli = "infill-overlap=s";
def->ratio_over = "perimeter_extrusion_width";
def->default_value = new ConfigOptionFloatOrPercent(15, true);
def->default_value = new ConfigOptionFloatOrPercent(55, true);

def = this->add("infill_speed", coFloat);
def->label = "Infill";
Expand Down

0 comments on commit f7acb20

Please sign in to comment.