final touch

This commit is contained in:
PavelMikus 2022-12-06 12:31:08 +01:00 committed by Pavel Mikuš
parent f1f2810476
commit 4a6945cb77
2 changed files with 3 additions and 3 deletions

View File

@ -126,8 +126,8 @@ public:
}; };
float flow_width = path.width; float flow_width = path.width;
float min_malformation_dist = 0.05 * flow_width; float min_malformation_dist = 0.2 * flow_width;
float peak_malformation_dist = 0.5 * flow_width; float peak_malformation_dist = 0.6 * flow_width;
const Points &original_points = path.polyline.points; const Points &original_points = path.polyline.points;
std::vector<ExtendedPoint> points; std::vector<ExtendedPoint> points;

View File

@ -2368,7 +2368,7 @@ void PrintConfigDef::init_fff_params()
def->ratio_over = "external_perimeter_speed"; def->ratio_over = "external_perimeter_speed";
def->min = 0; def->min = 0;
def->mode = comAdvanced; def->mode = comAdvanced;
def->set_default_value(new ConfigOptionFloatOrPercent(5, false)); def->set_default_value(new ConfigOptionFloatOrPercent(15, false));
def = this->add("solid_infill_below_area", coFloat); def = this->add("solid_infill_below_area", coFloat);
def->label = L("Solid infill threshold area"); def->label = L("Solid infill threshold area");