ClosedBox: fix (commented out) BedBolt support

This commit is contained in:
Florian Festi 2017-09-13 11:35:10 +02:00
parent 23a1da105e
commit b623008ea3
1 changed files with 6 additions and 6 deletions

View File

@ -39,15 +39,15 @@ class ClosedBox(Boxes):
t = self.thickness
d2 = [edges.Bolts(2)]
d3 = [edges.Bolts(3)]
d2 = edges.Bolts(2)
d3 = edges.Bolts(3)
d2 = d3 = None
self.rectangularWall(x, h, "FFFF", bedBolts=d2, move="right")
self.rectangularWall(y, h, "FfFf", bedBolts=d3, move="up")
self.rectangularWall(y, h, "FfFf", bedBolts=d3)
self.rectangularWall(x, h, "FFFF", bedBolts=d2, move="left up")
self.rectangularWall(x, h, "FFFF", bedBolts=[d2], move="right")
self.rectangularWall(y, h, "FfFf", bedBolts=[d3], move="up")
self.rectangularWall(y, h, "FfFf", bedBolts=[d3])
self.rectangularWall(x, h, "FFFF", bedBolts=[d2], move="left up")
self.rectangularWall(x, y, "ffff", bedBolts=[d2, d3, d2, d3], move="right")
self.rectangularWall(x, y, "ffff", bedBolts=[d2, d3, d2, d3])