increase filter distance

Adding and splitting of lines results in print artefacts and additional travel moves. Avoiding these by sacrificing some additional line width change is better. The linewidth can never very more then 75% - 150%, so this long filter distance cannot cause huge line width changes. PP-129
This commit is contained in:
Rijk van Manen 2022-03-10 14:46:54 +01:00
parent d2ab7d3d4d
commit e2ea2ee3f5
2 changed files with 4 additions and 3 deletions

View File

@ -1165,11 +1165,11 @@
"description": "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance.", "description": "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance.",
"type": "float", "type": "float",
"unit": "mm", "unit": "mm",
"default_value": 1.4, "default_value": 100,
"value": "4 * math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x", "value": "100",
"minimum_value": "wall_transition_length", "minimum_value": "wall_transition_length",
"minimum_value_warning": "math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x", "minimum_value_warning": "math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x",
"maximum_value_warning": "10 * math.cos(wall_transition_angle / 180 * math.pi) * wall_line_width_x" "maximum_value_warning": "999999"
}, },
"wall_0_wipe_dist": "wall_0_wipe_dist":
{ {

View File

@ -30,6 +30,7 @@ wall_thickness
wall_line_count wall_line_count
wall_0_wipe_dist wall_0_wipe_dist
wall_0_inset wall_0_inset
wall_transition_filter_distance
optimize_wall_printing_order optimize_wall_printing_order
inset_direction inset_direction
alternate_extra_perimeter alternate_extra_perimeter