mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 18:49:02 +08:00
Merge branch 'master' into ui_rework_4_0
This commit is contained in:
commit
f0257e2b79
@ -187,7 +187,10 @@ class ConvexHullDecorator(SceneNodeDecorator):
|
||||
for child in self._node.getChildren():
|
||||
child_hull = child.callDecoration("_compute2DConvexHull")
|
||||
if child_hull:
|
||||
try:
|
||||
points = numpy.append(points, child_hull.getPoints(), axis = 0)
|
||||
except ValueError:
|
||||
pass
|
||||
|
||||
if points.size < 3:
|
||||
return None
|
||||
|
Loading…
x
Reference in New Issue
Block a user