FIX: do not generate sheath for normal support
Jira: none Change-Id: I8f3f3e39171055f8d18c06ceee8e245594273238 (cherry picked from commit 93bc7ecf4346f179f502bebc3cf47b0030b56e2c)
This commit is contained in:
parent
134f083bdb
commit
0e716584db
|
@ -97,7 +97,7 @@ struct SupportParameters {
|
|||
}
|
||||
|
||||
SupportMaterialPattern support_pattern = object_config.support_base_pattern;
|
||||
this->with_sheath = object_config.tree_support_wall_count > 0;
|
||||
this->with_sheath = is_tree(object_config.support_type) && object_config.tree_support_wall_count > 0;
|
||||
this->base_fill_pattern =
|
||||
support_pattern == smpHoneycomb ? ipHoneycomb :
|
||||
this->support_density > 0.95 || this->with_sheath ? ipRectilinear : ipSupportBase;
|
||||
|
|
Loading…
Reference in New Issue