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:
authorSimon Edwards <s.edwards@ultimaker.com>2016-06-15 17:22:48 +0300
committerSimon Edwards <s.edwards@ultimaker.com>2016-06-15 17:22:48 +0300
commit4cc0026af3cd1cf33f5ccb8a3cf6f4614037aea8 (patch)
tree8213febc5ae1b0844afd3c76241984ef15024ce3 /cura/ConvexHullDecorator.py
parent5f638f6e69b85d64d1904bac8c4c25417294e209 (diff)
Minor rework in response to code review.
Contributes to CURA-1504
Diffstat (limited to 'cura/ConvexHullDecorator.py')
-rw-r--r--cura/ConvexHullDecorator.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/cura/ConvexHullDecorator.py b/cura/ConvexHullDecorator.py
index 2a8f55d09e..7efc8c7ffb 100644
--- a/cura/ConvexHullDecorator.py
+++ b/cura/ConvexHullDecorator.py
@@ -2,7 +2,6 @@ from UM.Scene.SceneNodeDecorator import SceneNodeDecorator
from UM.Application import Application
from UM.Math.Polygon import Polygon
-from UM.Logger import Logger
from . import ConvexHullNode
import numpy
@@ -113,7 +112,6 @@ class ConvexHullDecorator(SceneNodeDecorator):
# Check the cache
if child_polygon == self._2d_convex_hull_group_child_polygon:
- # Logger.log('d', 'Cache hit in _compute2DConvexHull group path')
return self._2d_convex_hull_group_result
# First, calculate the normal convex hull around the points
@@ -137,7 +135,6 @@ class ConvexHullDecorator(SceneNodeDecorator):
# Check the cache
if mesh is self._2d_convex_hull_mesh and world_transform == self._2d_convex_hull_mesh_world_transform:
- # Logger.log('d', 'Cache hit in _compute2DConvexHull mesh path')
return self._2d_convex_hull_mesh_result
vertex_data = mesh.getConvexHullTransformedVertices(world_transform)