Lower the minimum Y of the build volume a bit so we never exclude things positioned on the platform

This commit is contained in:
Arjen Hiemstra 2015-04-20 16:41:58 +02:00
parent 4801233728
commit 0175eb7b59

View file

@ -121,4 +121,4 @@ class BuildVolume(SceneNode):
else:
self._disallowed_area_mesh = None
self._aabb = AxisAlignedBox(minimum = Vector(minW, minH, minD), maximum = Vector(maxW, maxH, maxD))
self._aabb = AxisAlignedBox(minimum = Vector(minW, minH - 1.0, minD), maximum = Vector(maxW, maxH, maxD))