From 60777b72fcd3c7dea7511bd7c24da194abfd5478 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 16 Apr 2019 11:27:29 +0200 Subject: [PATCH] Increase defaults for Maximum Resolution significantly We want to limit it mostly to the Maximum Deviation now. So also don't increase the Maximum Deviation along this time. Contributes to issue CURA-6458. --- resources/definitions/fdmprinter.def.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 11da222833..15e3209e49 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5855,7 +5855,7 @@ "description": "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway.", "type": "float", "unit": "mm", - "default_value": 0.01, + "default_value": 0.25, "minimum_value": "0.001", "minimum_value_warning": "0.005", "maximum_value_warning": "0.1", @@ -5867,7 +5867,7 @@ "description": "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate.", "type": "float", "unit": "mm", - "default_value": 0.02, + "default_value": 0.5, "value": "meshfix_maximum_resolution * speed_travel / speed_print", "minimum_value": "0.001", "minimum_value_warning": "0.005", @@ -5882,7 +5882,6 @@ "type": "float", "unit": "mm", "default_value": 0.005, - "value": "meshfix_maximum_resolution / 2", "minimum_value": "0.001", "minimum_value_warning": "0.003", "maximum_value_warning": "0.1",