Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SliceableObjectDecorator.py « cura - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1cb589d9c6d8cb876e4e8287dfe8f16ab9ee09ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)()