mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 17:27:52 -06:00
One more fix in overhang starting point detection
This commit is contained in:
parent
df4612a209
commit
b3b2a1e891
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ sub extrude_loop {
|
||||||
@candidates = @concave;
|
@candidates = @concave;
|
||||||
if (!@candidates) {
|
if (!@candidates) {
|
||||||
# if none, look for any non-overhang vertex
|
# if none, look for any non-overhang vertex
|
||||||
@candidates = grep Boost::Geometry::Utils::point_covered_by_multi_polygon($_, $self->_layer_overhangs),
|
@candidates = grep !Boost::Geometry::Utils::point_covered_by_multi_polygon($_, $self->_layer_overhangs),
|
||||||
@{$loop->polygon};
|
@{$loop->polygon};
|
||||||
if (!@candidates) {
|
if (!@candidates) {
|
||||||
# if none, all points are valid candidates
|
# if none, all points are valid candidates
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue