mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-23 14:19:37 +08:00
Added todo comment
This commit is contained in:
parent
6e369bec57
commit
e582607e41
@ -163,6 +163,7 @@ class StartSliceJob(Job):
|
|||||||
verts = mesh_data.getVertices()
|
verts = mesh_data.getVertices()
|
||||||
indices = mesh_data.getIndices()
|
indices = mesh_data.getIndices()
|
||||||
if indices is not None:
|
if indices is not None:
|
||||||
|
#TODO: This is a very slow way of doing it! It also locks up the GUI.
|
||||||
verts = numpy.array([verts[vert_index] for face in indices for vert_index in face])
|
verts = numpy.array([verts[vert_index] for face in indices for vert_index in face])
|
||||||
else:
|
else:
|
||||||
verts = numpy.array(verts)
|
verts = numpy.array(verts)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user