mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 13:49:39 +08:00
15 lines
398 B
Python
15 lines
398 B
Python
# 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() |