From e582607e41bb53e3868b550fcd73c80df0eaa56c Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 5 Oct 2016 13:48:09 +0200 Subject: [PATCH] Added todo comment --- plugins/CuraEngineBackend/StartSliceJob.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 74a65ad938..210652720a 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -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)