From 0175eb7b59c82629e4cf882594fc2a0dea1fa696 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Mon, 20 Apr 2015 16:41:58 +0200 Subject: [PATCH] Lower the minimum Y of the build volume a bit so we never exclude things positioned on the platform --- BuildVolume.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BuildVolume.py b/BuildVolume.py index 1636cf9c00..f40f6df016 100644 --- a/BuildVolume.py +++ b/BuildVolume.py @@ -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))