ClosedBox: fix (commented out) BedBolt support
This commit is contained in:
parent
23a1da105e
commit
b623008ea3
|
@ -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])
|
||||
|
|
Loading…
Reference in New Issue