Render SupportInfillType so support is rendered correctly again.

Fixes #445
This commit is contained in:
Arjen Hiemstra 2015-10-06 12:04:58 +02:00
parent ba86352642
commit aac269f82a

View file

@ -107,7 +107,7 @@ class Layer():
def build(self, offset, vertices, colors, indices): def build(self, offset, vertices, colors, indices):
result = offset result = offset
for polygon in self._polygons: for polygon in self._polygons:
if polygon._type == Polygon.InfillType or polygon._type == Polygon.SupportInfillType: if polygon._type == Polygon.InfillType:
continue continue
polygon.build(result, vertices, colors, indices) polygon.build(result, vertices, colors, indices)