Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorp.kuiper <p.kuiper@ultimaker.com>2022-06-03 13:08:41 +0300
committerp.kuiper <p.kuiper@ultimaker.com>2022-06-03 13:08:41 +0300
commit12ccb667b25121e8dcdd39c51ba00a74310e2a8b (patch)
tree74a36929533b6d71b64c7a6ab74c6a4522229b77 /resources/definitions
parente035c082fb4894a923446dd4eb0db4a60941a722 (diff)
Bug fixes in ultimaker.def.json file. Formulas do not require '=' and strings must be double quoted.
Relates to PP-108
Diffstat (limited to 'resources/definitions')
-rw-r--r--resources/definitions/ultimaker.def.json18
1 files changed, 9 insertions, 9 deletions
diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json
index ae2f6c618e..172a7ccfbd 100644
--- a/resources/definitions/ultimaker.def.json
+++ b/resources/definitions/ultimaker.def.json
@@ -221,13 +221,13 @@
"value": true
},
"support_infill_rate": {
- "value": "=80 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 80"
+ "value": "80 if support_enable and support_structure == 'normal' else 0 if support_enable and support_structure == 'tree' else 80"
},
"support_offset": {
- "value": "=2*line_width"
+ "value": "2*line_width"
},
"support_xy_distance": {
- "value": "=support_offset"
+ "value": "support_offset"
},
"support_join_distance": {
"value": 0
@@ -236,25 +236,25 @@
"value": 2
},
"gradual_support_infill_step_height": {
- "value": "=4*layer_height"
+ "value": "4*layer_height"
},
"minimum_support_area": {
- "value": "=pow((0.15+support_offset), 2)"
+ "value": "pow((0.15+support_offset), 2)"
},
"support_interface_height": {
- "value": "=2*layer_height"
+ "value": "2*layer_height"
},
"support_interface_pattern": {
- "value": "zigzag"
+ "value": "'zigzag'"
},
"support_interface_enable": {
"value": true
},
"minimum_interface_area": {
- "value": "=minimum_support_area"
+ "value": "minimum_support_area"
},
"support_interface_offset": {
- "value": "=support_offset"
+ "value": "support_offset"
}
}
}