box2: Add optional click on top

This commit is contained in:
Florian Festi 2016-05-03 23:01:40 +02:00
parent 5250fc768f
commit d61567d8f1
1 changed files with 3 additions and 1 deletions

View File

@ -52,7 +52,9 @@ class Box(Boxes):
self.rectangularWall(x, h, [b, "F", t, "F"], self.rectangularWall(x, h, [b, "F", t, "F"],
bedBolts=[d2], move="left up") bedBolts=[d2], move="left up")
self.rectangularWall(x, y, "ffff", bedBolts=[d2, d3, d2, d3]) self.rectangularWall(x, y, "ffff", bedBolts=[d2, d3, d2, d3], move="right")
if self.top_edge == "c":
self.rectangularWall(x, y, "CCCC", bedBolts=[d2, d3, d2, d3], move="up")
self.close() self.close()