From ccd9a17be40bb2917082d336d13465c32d33e773 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Tue, 30 Jun 2020 13:22:45 +0200 Subject: [PATCH] Remove normals for ConvexHullNode They are rendered flat, so no need to store the normals CURA-7106 --- cura/Scene/ConvexHullNode.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cura/Scene/ConvexHullNode.py b/cura/Scene/ConvexHullNode.py index cb4cffca12..f8a284bebe 100644 --- a/cura/Scene/ConvexHullNode.py +++ b/cura/Scene/ConvexHullNode.py @@ -61,6 +61,7 @@ class ConvexHullNode(SceneNode): if hull_mesh_builder.addConvexPolygon( self._hull.getPoints()[::], # bottom layer is reversed self._mesh_height, color = self._color): + hull_mesh_builder.resetNormals() hull_mesh = hull_mesh_builder.build() self.setMeshData(hull_mesh) @@ -68,7 +69,7 @@ class ConvexHullNode(SceneNode): if hull_mesh_builder.addConvexPolygonExtrusion( self._hull.getPoints()[::-1], # bottom layer is reversed self._mesh_height - thickness, self._mesh_height, color = self._color): - + hull_mesh_builder.resetNormals() hull_mesh = hull_mesh_builder.build() self.setMeshData(hull_mesh)