Added todo comment

This commit is contained in:
Jaime van Kessel 2016-10-05 13:48:09 +02:00
parent 6e369bec57
commit e582607e41

View File

@ -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)