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

BlockSlicingDecorator.py « Scene « cura - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f0d57a83fb2b0975400396bc94e4a27f59c8e2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Copyright (c) 2018 Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.

from UM.Scene.SceneNodeDecorator import SceneNodeDecorator


class BlockSlicingDecorator(SceneNodeDecorator):
    def __init__(self) -> None:
        super().__init__()

    def isBlockSlicing(self) -> bool:
        return True

    def __deepcopy__(self, memo):
        return BlockSlicingDecorator()