From 21bbfe1313d81fd672d206b2d3e1081e5d537b62 Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 1 May 2018 11:01:14 +0200 Subject: [PATCH] Set maximum travel resolution depending on travel speed To ratio of travel speed vs. print speed. Contributes to issue CURA-5171. --- resources/definitions/fdmprinter.def.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 8f6af02767..628a4cf341 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -5535,10 +5535,11 @@ "meshfix_maximum_travel_resolution": { "label": "Maximum Travel Resolution", - "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.", + "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, + "value": "meshfix_maximum_resolution * speed_travel / speed_print", "minimum_value": "0.001", "minimum_value_warning": "0.005", "maximum_value_warning": "1",