From 97b051907fb90ef991a5f9ed55cd28142c6fe35c Mon Sep 17 00:00:00 2001 From: Mark Burton Date: Mon, 18 Dec 2017 14:52:25 +0000 Subject: [PATCH] Added infill_enable_travel_optimization setting. Enabling this can greatly reduce the travel time during the printing of infill but it can be expensive to compute so now the user can decide whether to use it or not. --- resources/definitions/fdmprinter.def.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 24f7efe373..ae8b93c3bb 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -1853,6 +1853,14 @@ "settable_per_mesh": true } } + }, + "infill_enable_travel_optimization": + { + "label": "Enable Travel Optimization", + "description": "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased.", + "type": "bool", + "default_value": false, + "settable_per_mesh": true } } },