mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-29 07:14:24 +08:00
12 lines
278 B
Python
12 lines
278 B
Python
# Copyright (c) 2017 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
|
|
from cura.Stages.CuraStage import CuraStage
|
|
|
|
|
|
## Stage for preparing model (slicing).
|
|
class PrepareStage(CuraStage):
|
|
|
|
def __init__(self):
|
|
super().__init__()
|