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):
|
2013-11-06 19:29:02 +01:00
|
|
|
def __init__(self, x, y, h, **kw):
|
2013-06-15 23:27:39 +02:00
|
|
|
self.x, self.y, self.h = x, y, h
|
2013-11-06 19:29:02 +01:00
|
|
|
Boxes.__init__(self, width=x+y+40, height=y+2*h+50, **kw)
|
2013-06-15 23:27:39 +02:00
|
|
|
|
|
|
|
def render(self):
|
|
|
|
x, y, h = self.x, self.y, self.h
|
|
|
|
t = self.thickness
|
|
|
|
|
2013-11-06 19:29:02 +01:00
|
|
|
d2 = [Bolts(2)]
|
|
|
|
d3 = [Bolts(3)]
|
|
|
|
|
|
|
|
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
|
|
|
|
2014-01-21 22:40:21 +01:00
|
|
|
b = Box(140, 202, 50, thickness=4.0)
|
2013-11-06 19:29:02 +01:00
|
|
|
b.edges["f"].settings.setValues(b.thickness, space=3, finger=3,
|
|
|
|
surroundingspaces=1)
|
2013-06-15 23:27:39 +02:00
|
|
|
b.render()
|