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/>.
|
2013-06-15 23:27:39 +02:00
|
|
|
|
|
|
|
from boxes import *
|
|
|
|
|
|
|
|
class Box(Boxes):
|
2016-03-08 21:53:29 +01:00
|
|
|
"""Fully closed box"""
|
2016-03-03 13:27:22 +01:00
|
|
|
def __init__(self):
|
|
|
|
Boxes.__init__(self)
|
|
|
|
self.buildArgParser("x", "y", "h")
|
2016-04-02 17:39:26 +02:00
|
|
|
self.argparser.set_defaults(
|
|
|
|
fingerjointfinger=3.0,
|
|
|
|
fingerjointspace=3.0
|
|
|
|
)
|
2013-06-15 23:27:39 +02:00
|
|
|
|
|
|
|
def render(self):
|
|
|
|
x, y, h = self.x, self.y, self.h
|
|
|
|
t = self.thickness
|
2016-06-07 20:20:35 +02:00
|
|
|
self.open()
|
2016-03-03 13:27:22 +01:00
|
|
|
|
2016-03-25 14:02:52 +01:00
|
|
|
d2 = [edges.Bolts(2)]
|
|
|
|
d3 = [edges.Bolts(3)]
|
2013-11-06 19:29:02 +01:00
|
|
|
|
|
|
|
d2 = d3 = None
|
2013-06-15 23:27:39 +02:00
|
|
|
|
|
|
|
self.moveTo(t, t)
|
2014-01-21 22:40:21 +01:00
|
|
|
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")
|
2013-06-15 23:27:39 +02:00
|
|
|
|
2014-01-21 22:40:21 +01:00
|
|
|
self.rectangularWall(x, y, "ffff", bedBolts=[d2, d3, d2, d3], move="right")
|
2013-06-15 23:27:39 +02:00
|
|
|
self.rectangularWall(x, y, "ffff", bedBolts=[d2, d3, d2, d3])
|
|
|
|
|
2014-03-21 21:08:54 +01:00
|
|
|
self.close()
|
2013-06-15 23:27:39 +02: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()
|