mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-17 11:47:50 -06:00
Correct typo leading to infinite recursion.
This commit is contained in:
parent
ef5f9bb0d4
commit
a68a591c18
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ class ConvexHullDecorator(SceneNodeDecorator):
|
||||||
return Polygon()
|
return Polygon()
|
||||||
|
|
||||||
def _compute2DConvexHeadFull(self) -> Optional[Polygon]:
|
def _compute2DConvexHeadFull(self) -> Optional[Polygon]:
|
||||||
convex_hull = self._compute2DConvexHeadFull()
|
convex_hull = self._compute2DConvexHull()
|
||||||
if convex_hull:
|
if convex_hull:
|
||||||
return convex_hull.getMinkowskiHull(self._getHeadAndFans())
|
return convex_hull.getMinkowskiHull(self._getHeadAndFans())
|
||||||
return None
|
return None
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue