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

GCodeListDecorator.py « cura - github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5738d0a7f2d87df03be8cc77a168074237996e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from UM.Scene.SceneNodeDecorator import SceneNodeDecorator


class GCodeListDecorator(SceneNodeDecorator):
    def __init__(self):
        super().__init__()
        self._gcode_list = []

    def getGCodeList(self):
        return self._gcode_list

    def setGCodeList(self, list):
        self._gcode_list = list