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

SliceableObjectDecorator.py « Scene « cura - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad51f7d755388bd8cbc4180ba94559b9f29f554d (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) -> None:
        super().__init__()

    def isSliceable(self) -> bool:
        return True

    def __deepcopy__(self, memo) -> "SliceableObjectDecorator":
        return type(self)()