From e69bdd4fe5c05252de65f9be3bef05ee631ee5b9 Mon Sep 17 00:00:00 2001 From: Tim Kuipers Date: Mon, 7 Dec 2015 18:11:48 +0100 Subject: [PATCH] JSON: introduced brim_width (CURA-550) --- resources/machines/fdmprinter.json | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/resources/machines/fdmprinter.json b/resources/machines/fdmprinter.json index bceac73d2c..e9dbf4328b 100644 --- a/resources/machines/fdmprinter.json +++ b/resources/machines/fdmprinter.json @@ -1370,11 +1370,22 @@ "enabled": "adhesion_type == \"skirt\"" }, "brim_line_count": { - "label": "Brim Line Count", - "description": "The number of lines used for a brim: More lines means a larger brim which sticks better, but this also makes your effective print area smaller.", - "type": "int", - "default": 10, - "enabled": "adhesion_type == \"brim\"" + "label": "Brim Width", + "description": "The distance from the model to the end of the brim. A larger brim sticks better to the build platform, but also makes your effective print area smaller.", + "type": "float", + "unit": "mm", + "default": 0.8, + "enabled": "adhesion_type == \"brim\"", + "children": { + "brim_line_count": { + "label": "Brim Line Count", + "description": "The number of lines used for a brim. More lines means a larger brim which sticks better to the build plate, but this also makes your effective print area smaller.", + "type": "int", + "default": 10, + "inherit_function": "parent_value / skirt_line_width" + "enabled": "adhesion_type == \"brim\"" + } + } }, "raft_margin": { "label": "Raft Extra Margin",