Fixed various problems with support placement.

This commit is contained in:
Godrak 2022-05-02 14:48:07 +02:00 committed by PavelMikus
parent 6f6a0e7efd
commit 91a4047586
3 changed files with 40 additions and 25 deletions
src/libslic3r

View file

@ -431,7 +431,7 @@ void PrintObject::find_supportable_issues()
TriangleSelectorWrapper selector { model_volume->mesh() };
for (const SupportableIssues::SupportPoint &support_point : issues.supports_nedded) {
selector.enforce_spot(Vec3f(inv_transform.cast<float>() * support_point.position), 0.3f);
selector.enforce_spot(Vec3f(inv_transform.cast<float>() * support_point.position), 2.0f);
}
model_volume->supported_facets.set(selector.selector);