Cura/cura/Scene/SliceableObjectDecorator.py
2018-01-03 15:09:19 +01:00

13 lines
283 B
Python

from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
class SliceableObjectDecorator(SceneNodeDecorator):
def __init__(self):
super().__init__()
def isSliceable(self):
return True
def __deepcopy__(self, memo):
return type(self)()