From e9634fa8d90e054a01788f2c6ff43858ef682d4a Mon Sep 17 00:00:00 2001 From: Rijk van Manen Date: Tue, 21 Feb 2023 11:56:21 +0100 Subject: [PATCH 1/2] revert support join distance and tower diameter We made it a bit too bulky, this is not useful anymore CURA-10289/PP-323 --- resources/definitions/fdmprinter.def.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 6f1682a5b5..92246b4b56 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -4996,10 +4996,10 @@ "description": "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one.", "unit": "mm", "type": "float", - "default_value": 5.0, + "default_value": 2.0, "limit_to_extruder": "support_infill_extruder_nr", "minimum_value_warning": "0", - "maximum_value_warning": "50", + "maximum_value_warning": "10", "enabled": "(support_enable and support_structure == 'normal') or support_meshes_present", "settable_per_mesh": false, "settable_per_extruder": true @@ -5477,7 +5477,7 @@ "description": "The diameter of a special tower.", "unit": "mm", "type": "float", - "default_value": 5.0, + "default_value": 3.0, "limit_to_extruder": "support_infill_extruder_nr", "minimum_value": "0", "minimum_value_warning": "2 * machine_nozzle_size", From 0b6edce20ab2a8edaebfe62be16aea5c7d537766 Mon Sep 17 00:00:00 2001 From: Rijk van Manen Date: Tue, 21 Feb 2023 11:57:24 +0100 Subject: [PATCH 2/2] increase support horizontal expansion We introduced a smoothing distance effectively introducing a negative horizontal expansion as well. So adding this smoothing distance to the horizontal expansion to compensate for this. CURA-10289/PP-323 --- resources/definitions/fdmprinter.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 92246b4b56..a7edb3460f 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5010,8 +5010,8 @@ "description": "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support.", "unit": "mm", "type": "float", - "default_value": 0.4, - "value": "support_line_width", + "default_value": 0.8, + "value": "support_line_width + 0.4", "limit_to_extruder": "support_infill_extruder_nr", "minimum_value_warning": "-1 * machine_nozzle_size", "maximum_value_warning": "10 * machine_nozzle_size",