Disable Connect Infill Lines when using gradual infill

Gradual infill causes infill to break up into lots of different areas with different infill densities. Because Connect Infill Lines connects those lines along the border of an infill area, you sometimes get very thin areas with lots of lines going back and forth connecting extremely thin pieces of infill. Sometimes it works fantastically (esp. with mechanical models) but sometimes it really messes up the print.

Contributes to issue CURA-5319.
This commit is contained in:
Ruben D 2018-05-02 17:45:25 +02:00
parent b1c9b04a7a
commit 0c51173bed
No known key found for this signature in database
GPG key ID: 6B42C9465E304A62
2 changed files with 2 additions and 2 deletions

View file

@ -154,6 +154,6 @@
"wall_0_inset": { "value": "0" },
"wall_line_width_x": { "value": "round(wall_line_width * 0.3 / 0.35, 2)" },
"wall_thickness": { "value": "1" },
"zig_zaggify_infill": { "value": "True" }
"zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }
}
}

View file

@ -154,6 +154,6 @@
"optimize_wall_printing_order": { "value": "True" },
"retraction_combing": { "default_value": "all" },
"initial_layer_line_width_factor": { "value": "120" },
"zig_zaggify_infill": { "value": "True" }
"zig_zaggify_infill": { "value": "gradual_infill_steps == 0" }
}
}