Codestyle & removal unused imports

This commit is contained in:
Jaime van Kessel 2017-03-22 11:38:55 +01:00
parent 808df4c228
commit 94c6b23418
3 changed files with 10 additions and 10 deletions

View file

@ -2,11 +2,12 @@
# Cura is released under the terms of the AGPLv3 or higher.
from UM.Mesh.MeshData import MeshData
## Class to holds the layer mesh and information about the layers.
# Immutable, use LayerDataBuilder to create one of these.
class LayerData(MeshData):
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):
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