mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-10 15:25:09 -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
|
@ -41,13 +41,13 @@ skin_no_small_gaps_heuristic = False
|
|||
skirt_brim_minimal_length = 100
|
||||
skirt_brim_speed = 20
|
||||
skirt_line_count = 3
|
||||
speed_layer_0 = 20
|
||||
speed_layer_0 = =math.ceil(speed_print * 20 / 45)
|
||||
speed_print = 45
|
||||
speed_slowdown_layers = 1
|
||||
speed_topbottom = 25
|
||||
speed_topbottom = =math.ceil(speed_print * 25 / 45)
|
||||
speed_travel = 120
|
||||
speed_travel_layer_0 = 60
|
||||
speed_wall = 25
|
||||
speed_wall_x = 35
|
||||
speed_wall = =math.ceil(speed_print * 25 / 45)
|
||||
speed_wall_x = =math.ceil(speed_print * 35 / 45)
|
||||
top_thickness = 0.8
|
||||
wall_thickness = 0.8
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue