From e2ea2ee3f5675c8e637238a3fff639fa2043476b Mon Sep 17 00:00:00 2001 From: Rijk van Manen Date: Thu, 10 Mar 2022 14:46:54 +0100 Subject: [PATCH 1/2] increase filter distance Adding and splitting of lines results in print artefacts and additional travel moves. Avoiding these by sacrificing some additional line width change is better. The linewidth can never very more then 75% - 150%, so this long filter distance cannot cause huge line width changes. PP-129 --- resources/definitions/fdmprinter.def.json | 6 +++--- resources/setting_visibility/expert.cfg | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index b1cbb07904..d8653c9e35 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1165,11 +1165,11 @@ "description": "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance.", "type": "float", "unit": "mm", - "default_value": 1.4, - "value": "4 * math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x", + "default_value": 100, + "value": "100", "minimum_value": "wall_transition_length", "minimum_value_warning": "math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x", - "maximum_value_warning": "10 * math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x" + "maximum_value_warning": "999999" }, "wall_0_wipe_dist": { diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index 8078cf84da..3673229f44 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -30,6 +30,7 @@ wall_thickness wall_line_count wall_0_wipe_dist wall_0_inset +wall_transition_filter_distance optimize_wall_printing_order inset_direction alternate_extra_perimeter From a9264cd41c44431059049266e2fc7de9b164cd64 Mon Sep 17 00:00:00 2001 From: Rijk van Manen <37628975+rijkvanmanen@users.noreply.github.com> Date: Thu, 10 Mar 2022 15:59:23 +0100 Subject: [PATCH 2/2] set maximum value in stead of maximum value warning PP-129 Co-authored-by: Jaime van Kessel --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index d8653c9e35..b86bfd4768 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1169,7 +1169,7 @@ "value": "100", "minimum_value": "wall_transition_length", "minimum_value_warning": "math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x", - "maximum_value_warning": "999999" + "maximum_value": "999999" }, "wall_0_wipe_dist": {