mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 07:15:03 -06:00
CURA-5342 replace speed setting constants in profiles to formulas; also adds necessary settings for um2p if the setting is also defined in ultimaker2
This commit is contained in:
parent
310a99fba7
commit
359506874a
200 changed files with 404 additions and 377 deletions
|
@ -43,13 +43,13 @@ skin_no_small_gaps_heuristic = False
|
|||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 25
|
||||
skirt_line_count = 2
|
||||
speed_layer_0 = 14
|
||||
speed_layer_0 = =math.ceil(speed_print * 14 / 40)
|
||||
speed_print = 40
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 20
|
||||
speed_topbottom = =math.ceil(speed_print * 20 / 40)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 40)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 40)
|
||||
top_thickness = =top_bottom_thickness
|
||||
wall_thickness = 0.8
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue