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;
|
||||
if (!@candidates) {
|
||||
# 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};
|
||||
if (!@candidates) {
|
||||
# if none, all points are valid candidates
|
||||
|
|
Loading…
Reference in a new issue