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

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2017-03-22 13:38:55 +0300
committerJaime van Kessel <nallath@gmail.com>2017-03-22 13:38:55 +0300
commit94c6b234181b4205fed877ac225df5353e94afdf (patch)
tree1439f7c0c307df09db6c2092d74a559acac4915e /cura/LayerData.py
parent808df4c228118923b2476d943ef388cd45597a30 (diff)
Codestyle & removal unused imports
Diffstat (limited to 'cura/LayerData.py')
-rw-r--r--cura/LayerData.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/cura/LayerData.py b/cura/LayerData.py
index 3fe550c297..03dc6da45f 100644
--- a/cura/LayerData.py
+++ b/cura/LayerData.py
@@ -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