mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
Added todo comment
This commit is contained in:
parent
6e369bec57
commit
e582607e41
1 changed files with 1 additions and 0 deletions
|
@ -163,6 +163,7 @@ class StartSliceJob(Job):
|
|||
verts = mesh_data.getVertices()
|
||||
indices = mesh_data.getIndices()
|
||||
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])
|
||||
else:
|
||||
verts = numpy.array(verts)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue