Fixes for the problem where duplicated objects were broken, missing hull 'shadows' or would fly off the build plate.

Contributes to CURA-1504 Improve performance/simplicity by using Convex Hulls in Scene Graph
This commit is contained in:
Simon Edwards 2016-06-30 09:32:46 +02:00
parent 4885238103
commit 551dc7d757
3 changed files with 14 additions and 17 deletions

View file

@ -10,3 +10,6 @@ class ZOffsetDecorator(SceneNodeDecorator):
def getZOffset(self):
return self._z_offset
def __deepcopy__(self, memo):
return ZOffsetDecorator()