2016-02-12 21:22:32 +01:00
|
|
|
#!/usr/bin/python3
|
2014-03-16 18:26:12 +01:00
|
|
|
# Copyright (C) 2013-2014 Florian Festi
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2014-03-15 15:03:38 +01:00
|
|
|
|
|
|
|
from boxes import *
|
2016-03-23 09:11:51 +01:00
|
|
|
from boxes.edges import Bolts
|
2014-03-15 15:03:38 +01:00
|
|
|
import inspect
|
|
|
|
|
|
|
|
class Box(Boxes):
|
2016-03-08 21:53:29 +01:00
|
|
|
"""Simple open box with raised floor"""
|
|
|
|
|
2016-03-03 13:27:22 +01:00
|
|
|
def __init__(self):
|
|
|
|
Boxes.__init__(self)
|
2016-04-09 11:47:12 +02:00
|
|
|
self.buildArgParser("top_edge", "bottom_edge", "x", "y", "h")
|
2016-04-02 17:39:26 +02:00
|
|
|
self.argparser.set_defaults(
|
|
|
|
fingerjointfinger=3.0,
|
|
|
|
fingerjointspace=3.0
|
|
|
|
)
|
2014-03-15 15:03:38 +01:00
|
|
|
|
|
|
|
def render(self):
|
|
|
|
x, y, h = self.x, self.y, self.h
|
2016-04-09 11:47:12 +02:00
|
|
|
|
2016-03-03 13:27:22 +01:00
|
|
|
self.open(width=x+y+40, height=y+2*h+50)
|
2014-03-15 15:03:38 +01:00
|
|
|
|
2016-04-09 11:47:12 +02:00
|
|
|
b = self.edges.get(self.bottom_edge, self.edges["F"])
|
|
|
|
t = self.edges.get(self.top_edge, self.edges["e"])
|
|
|
|
|
2016-03-23 09:11:51 +01:00
|
|
|
d2 = Bolts(2)
|
|
|
|
d3 = Bolts(3)
|
2014-03-15 15:03:38 +01:00
|
|
|
|
|
|
|
d2 = d3 = None
|
|
|
|
|
2016-04-09 11:47:12 +02:00
|
|
|
self.moveTo(self.thickness, self.thickness)
|
|
|
|
self.rectangularWall(x, h, [b, "F", t, "F"],
|
|
|
|
bedBolts=[d2], move="right")
|
|
|
|
self.rectangularWall(y, h, [b, "f", t, "f"],
|
|
|
|
bedBolts=[d3], move="up")
|
|
|
|
self.rectangularWall(y, h, [b, "f", t, "f"],
|
|
|
|
bedBolts=[d3])
|
|
|
|
self.rectangularWall(x, h, [b, "F", t, "F"],
|
|
|
|
bedBolts=[d2], move="left up")
|
2014-03-15 15:03:38 +01:00
|
|
|
|
2016-05-03 23:01:40 +02:00
|
|
|
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")
|
2014-03-15 15:03:38 +01:00
|
|
|
|
2014-03-21 21:08:54 +01:00
|
|
|
self.close()
|
2014-03-15 15:03:38 +01:00
|
|
|
|
2016-03-23 22:05:06 +01:00
|
|
|
def main():
|
2016-03-03 13:27:22 +01:00
|
|
|
b = Box()
|
|
|
|
b.parseArgs()
|
|
|
|
b.render()
|
2016-03-23 22:05:06 +01:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|