Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupermerill <merill@free.fr>2021-12-20 18:48:20 +0300
committersupermerill <merill@free.fr>2021-12-22 20:12:13 +0300
commit8dc30cf6353e085134d5d8147437e368f269e924 (patch)
tree2a162d42bd0582913d229bb22460ea32b53f2d27 /src/libslic3r/PrintConfig.cpp
parenta0f8d5023a622d77f3805ea26fa4771ed31846e9 (diff)
solid infill overlap test
supermerill/SuperSlicer#2028
Diffstat (limited to 'src/libslic3r/PrintConfig.cpp')
-rw-r--r--src/libslic3r/PrintConfig.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 854be0d4f..d50cbecf8 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -398,7 +398,8 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("This factor affects the amount of plastic for bridging. "
"You can decrease it slightly to pull the extrudates and prevent sagging, "
"although default settings are usually good and you should experiment "
- "with cooling (use a fan) before tweaking this.");
+ "with cooling (use a fan) before tweaking this."
+ "\nFor reference, the default bridge flow is (in mm3/mm): (nozzle diameter) * (nozzle diameter) * PI/4");
def->min = 1;
def->max = 200;
def->mode = comAdvanced;
@@ -3893,6 +3894,16 @@ void PrintConfigDef::init_fff_params()
def->mode = comExpert;
def->set_default_value(new ConfigOptionFloat(70));
+ def = this->add("solid_infill_overlap", coPercent);
+ def->label = L("Solid fill overlap");
+ def->category = OptionCategory::infill;
+ def->tooltip = L("Overlap.");
+ def->sidetext = L("%");
+ def->min = 0;
+ def->max = 100;
+ def->mode = comExpert;
+ def->set_default_value(new ConfigOptionPercent(100));
+
def = this->add("solid_infill_extruder", coInt);
def->label = L("Solid infill extruder");
def->category = OptionCategory::extruders;