From 2b37bde6302142ed24bfc32881e78cd59a61c38b Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Thu, 22 Dec 2016 10:46:19 +0100 Subject: [PATCH] Now with infill --- cura/LayerPolygon.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cura/LayerPolygon.py b/cura/LayerPolygon.py index cb00bd0c60..f37e6a2f5e 100644 --- a/cura/LayerPolygon.py +++ b/cura/LayerPolygon.py @@ -49,7 +49,8 @@ class LayerPolygon: def buildCache(self): # For the line mesh we do not draw Infill or Jumps. Therefore those lines are filtered out. - self._build_cache_line_mesh_mask = numpy.logical_not(numpy.logical_or(self._jump_mask, self._types == LayerPolygon.InfillType )) + # self._build_cache_line_mesh_mask = numpy.logical_not(numpy.logical_or(self._jump_mask, self._types == LayerPolygon.InfillType )) + self._build_cache_line_mesh_mask = numpy.logical_not(self._jump_mask) mesh_line_count = numpy.sum(self._build_cache_line_mesh_mask) self._index_begin = 0 self._index_end = mesh_line_count