Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRijk van Manen <r.vanmanen@ultimaker.com>2021-11-15 17:29:40 +0300
committerRijk van Manen <r.vanmanen@ultimaker.com>2021-11-15 17:29:40 +0300
commitd3951a1a5932071e1f8f63970ccafaf6ae53702d (patch)
tree7c82ce3ba1c6be3194f4e07e1e4826504cbf6781 /resources/variants
parent35550fc1b432806fd84c4d2d2354327373fd2da6 (diff)
change infill pattern to zigzag for >80% infill
This is done for all ultimaker profiles (PP-25).
Diffstat (limited to 'resources/variants')
-rw-r--r--resources/variants/ultimaker3_aa0.8.inst.cfg2
-rw-r--r--resources/variants/ultimaker3_bb0.8.inst.cfg2
-rw-r--r--resources/variants/ultimaker3_extended_aa0.8.inst.cfg2
-rw-r--r--resources/variants/ultimaker3_extended_bb0.8.inst.cfg2
-rw-r--r--resources/variants/ultimaker_s3_aa0.8.inst.cfg2
-rw-r--r--resources/variants/ultimaker_s3_bb0.8.inst.cfg2
-rw-r--r--resources/variants/ultimaker_s5_aa0.8.inst.cfg2
-rw-r--r--resources/variants/ultimaker_s5_bb0.8.inst.cfg2
8 files changed, 8 insertions, 8 deletions
diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg
index cb8b95b0fb..41f3694323 100644
--- a/resources/variants/ultimaker3_aa0.8.inst.cfg
+++ b/resources/variants/ultimaker3_aa0.8.inst.cfg
@@ -19,7 +19,7 @@ default_material_print_temperature = 200
infill_before_walls = False
infill_line_width = =round(line_width * 0.6 / 0.7, 2)
infill_overlap = 0
-infill_pattern = triangles
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0
jerk_enabled = True
jerk_print = 25
diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg
index 97e16a2afa..42a547f821 100644
--- a/resources/variants/ultimaker3_bb0.8.inst.cfg
+++ b/resources/variants/ultimaker3_bb0.8.inst.cfg
@@ -22,7 +22,7 @@ gradual_support_infill_step_height = 1.6
gradual_support_infill_steps = 2
infill_line_width = =round(line_width * 0.8 / 0.7, 2)
infill_overlap = 0
-infill_pattern = triangles
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0
jerk_enabled = True
jerk_print = 25
diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg
index 5a1259fc35..1681abd5ef 100644
--- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg
+++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg
@@ -19,7 +19,7 @@ default_material_print_temperature = 200
infill_before_walls = False
infill_line_width = =round(line_width * 0.6 / 0.7, 2)
infill_overlap = 0
-infill_pattern = triangles
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0
jerk_enabled = True
jerk_print = 25
diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg
index bc86c63461..9f124467ee 100644
--- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg
+++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg
@@ -22,7 +22,7 @@ gradual_support_infill_step_height = 1.6
gradual_support_infill_steps = 2
infill_line_width = =round(line_width * 0.8 / 0.7, 2)
infill_overlap = 0
-infill_pattern = triangles
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0
jerk_enabled = True
jerk_print = 25
diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg
index 7fac331e72..a2796d4a1b 100644
--- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg
+++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg
@@ -19,7 +19,7 @@ default_material_print_temperature = 200
infill_before_walls = False
infill_line_width = =round(line_width * 0.6 / 0.7, 2)
infill_overlap = 0
-infill_pattern = triangles
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0
jerk_enabled = True
jerk_print = 25
diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg
index c68b46a6ae..f503cd7499 100644
--- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg
+++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg
@@ -22,7 +22,7 @@ gradual_support_infill_step_height = 1.6
gradual_support_infill_steps = 2
infill_line_width = =round(line_width * 0.8 / 0.7, 2)
infill_overlap = 0
-infill_pattern = triangles
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0
jerk_enabled = True
jerk_print = 25
diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg
index 7a6bf3deb5..a3b0e653c7 100644
--- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg
+++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg
@@ -19,7 +19,7 @@ default_material_print_temperature = 200
infill_before_walls = False
infill_line_width = =round(line_width * 0.6 / 0.7, 2)
infill_overlap = 0
-infill_pattern = triangles
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0
jerk_enabled = True
jerk_print = 25
diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg
index 7bb613a2b4..d778da8c84 100644
--- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg
+++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg
@@ -22,7 +22,7 @@ gradual_support_infill_step_height = 1.6
gradual_support_infill_steps = 2
infill_line_width = =round(line_width * 0.8 / 0.7, 2)
infill_overlap = 0
-infill_pattern = triangles
+infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles'
infill_wipe_dist = 0
jerk_enabled = True
jerk_print = 25