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: 0536e1635fb58f88c0313570e2cce966aa8bf572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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