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:
authorGhostkeeper <rubend@tutanota.com>2019-10-10 15:30:39 +0300
committerGhostkeeper <rubend@tutanota.com>2019-10-10 15:30:39 +0300
commit7b2037fd47b4e2092aa738b555da7a226946a003 (patch)
treea3cc7b0f0d168c89eab2b09b1bdf6917d5e58737 /plugins/AMFReader
parent94f1749d58d7176dcb7513bd94037a1818bdf8f9 (diff)
Fix code style
Diffstat (limited to 'plugins/AMFReader')
-rw-r--r--plugins/AMFReader/AMFReader.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/AMFReader/AMFReader.py b/plugins/AMFReader/AMFReader.py
index f997c918c5..6c5ee91e87 100644
--- a/plugins/AMFReader/AMFReader.py
+++ b/plugins/AMFReader/AMFReader.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2019 fieldOfView
+# Copyright (c) 2019 fieldOfView, Ultimaker B.V.
# Cura is released under the terms of the LGPLv3 or higher.
# This AMF parser is based on the AMF parser in legacy cura:
@@ -39,9 +39,9 @@ class AMFReader(MeshReader):
MimeTypeDatabase.addMimeType(
MimeType(
- name="application/x-amf",
- comment="AMF",
- suffixes=["amf"]
+ name = "application/x-amf",
+ comment = "AMF",
+ suffixes = ["amf"]
)
)
@@ -94,7 +94,7 @@ class AMFReader(MeshReader):
if t.tag == "x":
v[0] = float(t.text) * scale
elif t.tag == "y":
- v[2] = - float(t.text) * scale
+ v[2] = -float(t.text) * scale
elif t.tag == "z":
v[1] = float(t.text) * scale
amf_mesh_vertices.append(v)
@@ -114,7 +114,7 @@ class AMFReader(MeshReader):
f[2] = int(t.text)
indices.append(f)
- mesh = trimesh.base.Trimesh(vertices=numpy.array(amf_mesh_vertices, dtype=numpy.float32), faces=numpy.array(indices, dtype=numpy.int32))
+ mesh = trimesh.base.Trimesh(vertices = numpy.array(amf_mesh_vertices, dtype = numpy.float32), faces = numpy.array(indices, dtype = numpy.int32))
mesh.merge_vertices()
mesh.remove_unreferenced_vertices()
mesh.fix_normals()
@@ -123,7 +123,7 @@ class AMFReader(MeshReader):
new_node = CuraSceneNode()
new_node.setSelectable(True)
new_node.setMeshData(mesh_data)
- new_node.setName(base_name if len(nodes)==0 else "%s %d" % (base_name, len(nodes)))
+ new_node.setName(base_name if len(nodes) == 0 else "%s %d" % (base_name, len(nodes)))
new_node.addDecorator(BuildPlateDecorator(CuraApplication.getInstance().getMultiBuildPlateModel().activeBuildPlate))
new_node.addDecorator(SliceableObjectDecorator())
@@ -165,9 +165,9 @@ class AMFReader(MeshReader):
indices.append(face)
face_count += 1
- vertices = numpy.asarray(vertices, dtype=numpy.float32)
- indices = numpy.asarray(indices, dtype=numpy.int32)
+ vertices = numpy.asarray(vertices, dtype = numpy.float32)
+ indices = numpy.asarray(indices, dtype = numpy.int32)
normals = calculateNormalsFromIndexedVertices(vertices, indices, face_count)
- mesh_data = MeshData(vertices=vertices, indices=indices, normals=normals)
+ mesh_data = MeshData(vertices = vertices, indices = indices, normals = normals)
return mesh_data