mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-22 05:39:37 +08:00
29 lines
1.1 KiB
Python
29 lines
1.1 KiB
Python
# Copyright (c) 2015 Ultimaker B.V.
|
|
# Cura is released under the terms of the LGPLv3 or higher.
|
|
from UM.Mesh.MeshData import MeshData
|
|
|
|
|
|
class LayerData(MeshData):
|
|
"""Class to holds the layer mesh and information about the layers.
|
|
|
|
Immutable, use :py:class:`cura.LayerDataBuilder.LayerDataBuilder` to create one of these.
|
|
"""
|
|
|
|
def __init__(self, vertices = None, normals = None, indices = None, colors = None, uvs = None, file_name = None,
|
|
center_position = None, layers=None, element_counts=None, attributes=None):
|
|
super().__init__(vertices=vertices, normals=normals, indices=indices, colors=colors, uvs=uvs,
|
|
file_name=file_name, center_position=center_position, attributes=attributes)
|
|
self._layers = layers
|
|
self._element_counts = element_counts
|
|
|
|
def getLayer(self, layer):
|
|
if layer in self._layers:
|
|
return self._layers[layer]
|
|
return None
|
|
|
|
def getLayers(self):
|
|
return self._layers
|
|
|
|
def getElementCounts(self):
|
|
return self._element_counts
|