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:
authorJack Ha <j.ha@ultimaker.com>2016-12-22 12:46:19 +0300
committerJack Ha <j.ha@ultimaker.com>2016-12-22 12:46:19 +0300
commit2b37bde6302142ed24bfc32881e78cd59a61c38b (patch)
treeacda7b8f1b9b9c936b860dd4c3937255b9d071cb /cura/LayerPolygon.py
parentc6d56b60f69c7021b9f4aebfb4a0e97ce931ca33 (diff)
Now with infill
Diffstat (limited to 'cura/LayerPolygon.py')
-rw-r--r--cura/LayerPolygon.py3
1 files changed, 2 insertions, 1 deletions
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