mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
15 lines
No EOL
398 B
Python
15 lines
No EOL
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() |