mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 03:07:55 -06:00
Fixed one more case where only_retract_when_crossing_perimeters didn't apply. #2498
This commit is contained in:
parent
0f7933c4f9
commit
7e82159620
6 changed files with 30 additions and 1 deletions
|
@ -131,6 +131,17 @@ Layer::any_internal_region_slice_contains(const T &item) const
|
|||
}
|
||||
template bool Layer::any_internal_region_slice_contains<Line>(const Line &item) const;
|
||||
|
||||
template <class T>
|
||||
bool
|
||||
Layer::any_bottom_region_slice_contains(const T &item) const
|
||||
{
|
||||
FOREACH_LAYERREGION(this, layerm) {
|
||||
if ((*layerm)->slices.any_bottom_contains(item)) return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
template bool Layer::any_bottom_region_slice_contains<Line>(const Line &item) const;
|
||||
|
||||
template <class T>
|
||||
bool
|
||||
Layer::any_internal_region_fill_surface_contains(const T &item) const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue