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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2017-07-31 17:23:52 +0300
committerbubnikv <bubnikv@gmail.com>2017-07-31 17:23:52 +0300
commit71f99423c57b36a91a390cc268ceb5235f1c079d (patch)
treea6a11a6383d618929df1910db26b24dab27b83f3 /xs/src/libslic3r/PrintObject.cpp
parent75c72bc59b3fac35508e5138a64933c124503d64 (diff)
New feature: Bridging angle override through a bridge_angle config
variable. When set to zero, the usual automatic bridge detection applies. The bridging angle override may be set at the Infill->Advanced settings, or through a modifier mesh.
Diffstat (limited to 'xs/src/libslic3r/PrintObject.cpp')
-rw-r--r--xs/src/libslic3r/PrintObject.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/xs/src/libslic3r/PrintObject.cpp b/xs/src/libslic3r/PrintObject.cpp
index 3999551c0..26f6c50a0 100644
--- a/xs/src/libslic3r/PrintObject.cpp
+++ b/xs/src/libslic3r/PrintObject.cpp
@@ -195,7 +195,8 @@ bool PrintObject::invalidate_state_by_config_options(const std::vector<t_config_
|| opt_key == "infill_extruder"
|| opt_key == "solid_infill_extruder"
|| opt_key == "infill_extrusion_width"
- || opt_key == "ensure_vertical_shell_thickness") {
+ || opt_key == "ensure_vertical_shell_thickness"
+ || opt_key == "bridge_angle") {
steps.emplace_back(posPrepareInfill);
} else if (
opt_key == "external_fill_pattern"