mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 15:13:56 -06:00
Fix for one-at-a-time. CURA-1707
This commit is contained in:
parent
d77f6e86e4
commit
d82249e260
2 changed files with 5 additions and 2 deletions
|
@ -48,7 +48,9 @@ class ConvexHullNode(SceneNode):
|
|||
self.setMeshData(hull_mesh)
|
||||
convex_hull_head = self._node.callDecoration("getConvexHullHead")
|
||||
if convex_hull_head:
|
||||
self._convex_hull_head_mesh = self.createHullMesh(convex_hull_head.getPoints())
|
||||
convex_hull_head_builder = MeshBuilder()
|
||||
convex_hull_head_builder.addConvexPolygon(convex_hull_head.getPoints(), self._mesh_height-thickness)
|
||||
self._convex_hull_head_mesh = convex_hull_head_builder.build()
|
||||
|
||||
def getHull(self):
|
||||
return self._hull
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue