mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-19 20:57:53 -06:00
Refactored the travel/retract/avoid_crossing_perimeters logic. Several edge cases are now handled correctly. #2498
This commit is contained in:
parent
7e82159620
commit
2562070232
6 changed files with 98 additions and 103 deletions
|
@ -77,7 +77,6 @@ SurfaceCollection::any_internal_contains(const T &item) const
|
|||
}
|
||||
return false;
|
||||
}
|
||||
template bool SurfaceCollection::any_internal_contains<Line>(const Line &item) const;
|
||||
template bool SurfaceCollection::any_internal_contains<Polyline>(const Polyline &item) const;
|
||||
|
||||
template <class T>
|
||||
|
@ -89,7 +88,7 @@ SurfaceCollection::any_bottom_contains(const T &item) const
|
|||
}
|
||||
return false;
|
||||
}
|
||||
template bool SurfaceCollection::any_bottom_contains<Line>(const Line &item) const;
|
||||
template bool SurfaceCollection::any_bottom_contains<Polyline>(const Polyline &item) const;
|
||||
|
||||
SurfacesPtr
|
||||
SurfaceCollection::filter_by_type(SurfaceType type)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue