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:
authorThomas-Karl Pietrowski <thopiekar@googlemail.com>2016-03-15 14:09:49 +0300
committerThomas-Karl Pietrowski <thopiekar@googlemail.com>2016-03-15 14:09:49 +0300
commitbbf931450a396f543cc0fee82291c329f33146f2 (patch)
tree1b9cc5f3583b71fb2f0fec2d1807b1f7690a84e4 /cura/ConvexHullNode.py
parent115d5dceae3f4843821cfc4e5a8d173fc0a76ec6 (diff)
Marking another unused variable
Diffstat (limited to 'cura/ConvexHullNode.py')
-rw-r--r--cura/ConvexHullNode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cura/ConvexHullNode.py b/cura/ConvexHullNode.py
index b99e80fcff..1c3d8f88db 100644
--- a/cura/ConvexHullNode.py
+++ b/cura/ConvexHullNode.py
@@ -33,7 +33,7 @@ class ConvexHullNode(SceneNode):
self._convex_hull_head_mesh = None
self._hull = hull
- hull_points = self._hull.getPoints()
+ hull_points = self._hull.getPoints() # TODO: @UnusedVariable
hull_mesh = self.createHullMesh(self._hull.getPoints())
if hull_mesh:
self.setMeshData(hull_mesh)