mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-07 15:07:31 -06:00
tweak default organic tree settings.
This commit is contained in:
parent
d0abc48765
commit
e6269dd852
9 changed files with 95 additions and 30 deletions
|
@ -1203,10 +1203,10 @@ StringObjectException Print::validate(StringObjectException *warning, Polygons*
|
|||
support_material_interface_flow(object).width());
|
||||
if (object->config().tree_support_tip_diameter < extrusion_width - EPSILON)
|
||||
return { L("Organic support tree tip diameter must not be smaller than support material extrusion width."), object, "tree_support_tip_diameter" };
|
||||
if (object->config().tree_support_branch_diameter < 2. * extrusion_width - EPSILON)
|
||||
return { L("Organic support branch diameter must not be smaller than 2x support material extrusion width."), object, "tree_support_branch_diameter" };
|
||||
if (object->config().tree_support_branch_diameter < object->config().tree_support_tip_diameter)
|
||||
return { L("Organic support branch diameter must not be smaller than support tree tip diameter."), object, "tree_support_branch_diameter" };
|
||||
if (object->config().tree_support_branch_diameter_organic < 2. * extrusion_width - EPSILON)
|
||||
return { L("Organic support branch diameter must not be smaller than 2x support material extrusion width."), object, "tree_support_branch_diameter_organic" };
|
||||
if (object->config().tree_support_branch_diameter_organic < object->config().tree_support_tip_diameter)
|
||||
return { L("Organic support branch diameter must not be smaller than support tree tip diameter."), object, "tree_support_branch_diameter_organic" };
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue