mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 14:55:03 -06:00
Set maximum travel resolution depending on travel speed
To ratio of travel speed vs. print speed. Contributes to issue CURA-5171.
This commit is contained in:
parent
ebca457f39
commit
21bbfe1313
1 changed files with 2 additions and 1 deletions
|
@ -5535,10 +5535,11 @@
|
|||
"meshfix_maximum_travel_resolution":
|
||||
{
|
||||
"label": "Maximum Travel Resolution",
|
||||
"description": "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code.",
|
||||
"description": "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate.",
|
||||
"type": "float",
|
||||
"unit": "mm",
|
||||
"default_value": 0.02,
|
||||
"value": "meshfix_maximum_resolution * speed_travel / speed_print",
|
||||
"minimum_value": "0.001",
|
||||
"minimum_value_warning": "0.005",
|
||||
"maximum_value_warning": "1",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue