Added simple test for BuildVolume

This commit is contained in:
Jaime van Kessel 2019-05-31 17:19:27 +02:00
parent 54ffcc478c
commit f85095f5d8
2 changed files with 30 additions and 6 deletions

View file

@ -165,16 +165,13 @@ class BuildVolume(SceneNode):
active_extruder_changed.connect(self._updateDisallowedAreasAndRebuild)
def setWidth(self, width: float) -> None:
if width is not None:
self._width = width
self._width = width
def setHeight(self, height: float) -> None:
if height is not None:
self._height = height
self._height = height
def setDepth(self, depth: float) -> None:
if depth is not None:
self._depth = depth
self._depth = depth
def setShape(self, shape: str) -> None:
if shape: