Remove convex hull for meshes that don't print geometry

Anti-overhang, Infill and Cutting meshes don't print geometry, so they don't need to push other objects away.
This commit is contained in:
fieldOfView 2017-11-09 11:29:50 +01:00
parent b0144c7f10
commit ff14db9133

View file

@ -14,6 +14,13 @@ import numpy
## The convex hull decorator is a scene node decorator that adds the convex hull functionality to a scene node.
# If a scene node has a convex hull decorator, it will have a shadow in which other objects can not be printed.
class ConvexHullDecorator(SceneNodeDecorator):
## Meshes that don't need a convex hull
#
# If these settings are True for any mesh, the mesh does not need to push other meshes away.
# Note that Support Mesh is not in here because it actually generates
# g-code in the volume of the mesh.
_not_printed_mesh_settings = {"anti_overhang_mesh", "infill_mesh", "cutting_mesh"}
def __init__(self):
super().__init__()
@ -56,6 +63,9 @@ class ConvexHullDecorator(SceneNodeDecorator):
if self._node is None:
return None
if (self._node.callDecoration("getStack") and any(self._node.callDecoration("getStack").getProperty(setting, "value") for setting in self._not_printed_mesh_settings)):
return None
hull = self._compute2DConvexHull()
if self._global_stack and self._node: