Fix TestCuraSceneNode

CURA-6522
This commit is contained in:
Nino van Hooff 2019-12-06 12:00:40 +01:00
parent f4c68f4e71
commit 4ad954f23e

View file

@ -13,6 +13,9 @@ class MockedConvexHullDecorator(SceneNodeDecorator):
def getConvexHull(self):
return Polygon([[5, 5], [-5, 5], [-5, -5], [5, -5]])
def getPrintingArea(self):
return Polygon([[5, 5], [-5, 5], [-5, -5], [5, -5]])
class InvalidConvexHullDecorator(SceneNodeDecorator):
def __init__(self):