Fix no overhang reverse in Arachne (#5964)

* Fix no overhang revert in Arachne

* Merge branch 'main' into fix-no-revert-arachne-pr
This commit is contained in:
Vovodroid 2024-11-22 15:44:38 +02:00 committed by GitHub
parent f11eb34b59
commit 717fe35ebd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1222,6 +1222,17 @@ static ExtrusionEntityCollection traverse_extrusions(const PerimeterGenerator& p
smooth_overhang_level(paths);
}
if (overhangs_reverse) {
for (const ExtrusionPath& path : paths) {
if (path.role() == erOverhangPerimeter) {
if (pg_extrusion.is_contour)
steep_overhang_contour = true;
else
steep_overhang_hole = true;
break;
}
}
}
}
}
else {