2016-07-11 23:01:57 +02:00
|
|
|
#!/usr/bin/env 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-05-30 18:38:10 +02:00
|
|
|
|
|
|
|
import boxes
|
|
|
|
import math
|
|
|
|
|
2016-08-17 15:07:41 +02:00
|
|
|
|
2013-05-30 18:38:10 +02:00
|
|
|
class FlexBox(boxes.Boxes):
|
2016-03-08 21:53:29 +01:00
|
|
|
"""Box with living hinge and round corners"""
|
2016-08-17 15:07:41 +02:00
|
|
|
|
2016-03-03 13:27:22 +01:00
|
|
|
def __init__(self):
|
|
|
|
boxes.Boxes.__init__(self)
|
2016-07-09 22:52:48 +02:00
|
|
|
self.buildArgParser("x", "y", "h", "outside")
|
2016-03-03 13:27:22 +01:00
|
|
|
self.argparser.add_argument(
|
2016-08-17 15:07:41 +02:00
|
|
|
"--radius", action="store", type=float, default=15,
|
2016-03-03 13:27:22 +01:00
|
|
|
help="Radius of the latch in mm")
|
2016-08-17 15:07:41 +02:00
|
|
|
|
2013-05-30 18:38:10 +02:00
|
|
|
@boxes.restore
|
|
|
|
def flexBoxSide(self, x, y, r, callback=None):
|
|
|
|
self.moveTo(r, 0)
|
2016-08-17 15:07:41 +02:00
|
|
|
|
2013-05-30 18:38:10 +02:00
|
|
|
for i, l in zip(range(2), (x, y)):
|
|
|
|
self.cc(callback, i)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edges["f"](l - 2 * r)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.corner(90, r)
|
2016-08-17 15:07:41 +02:00
|
|
|
|
2013-05-30 18:38:10 +02:00
|
|
|
self.cc(callback, 2)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edge(x - 2 * r)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.corner(90, r)
|
|
|
|
self.cc(callback, 3)
|
2013-06-03 09:49:51 +02:00
|
|
|
self.latch(self.latchsize)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.cc(callback, 4)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edges["f"](y - 2 * r - self.latchsize)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.corner(90, r)
|
|
|
|
|
|
|
|
def surroundingWall(self):
|
2016-03-03 13:27:22 +01:00
|
|
|
x, y, h, r = self.x, self.y, self.h, self.radius
|
2016-07-09 10:31:09 +02:00
|
|
|
|
2013-05-30 18:38:10 +02:00
|
|
|
c4 = math.pi * r * 0.5
|
|
|
|
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edges["F"](y - 2 * r - self.latchsize, False)
|
|
|
|
if x - 2 * r < self.thickness:
|
|
|
|
self.edges["X"](2 * c4 + x - 2 * r, h + 2 * self.thickness)
|
2016-07-09 10:45:53 +02:00
|
|
|
else:
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edges["X"](c4, h + 2 * self.thickness)
|
|
|
|
self.edges["F"](x - 2 * r, False)
|
|
|
|
self.edges["X"](c4, h + 2 * self.thickness)
|
|
|
|
self.edges["F"](y - 2 * r, False)
|
|
|
|
if x - 2 * r < self.thickness:
|
|
|
|
self.edges["X"](2 * c4 + x - 2 * r, h + 2 * self.thickness)
|
2016-07-09 10:45:53 +02:00
|
|
|
else:
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edges["X"](c4, h + 2 * self.thickness)
|
|
|
|
self.edge(x - 2 * r)
|
|
|
|
self.edges["X"](c4, h + 2 * self.thickness)
|
2013-06-03 09:49:51 +02:00
|
|
|
self.latch(self.latchsize, False)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edge(h + 2 * self.thickness)
|
2013-06-03 09:49:51 +02:00
|
|
|
self.latch(self.latchsize, False, True)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.edge(c4)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edge(x - 2 * r)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.edge(c4)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edges["F"](y - 2 * r, False)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.edge(c4)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edges["F"](x - 2 * r, False)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.edge(c4)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edges["F"](y - 2 * r - self.latchsize, False)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.corner(90)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.edge(h + 2 * self.thickness)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.corner(90)
|
|
|
|
|
|
|
|
def render(self):
|
2016-07-09 22:52:48 +02:00
|
|
|
|
|
|
|
if self.outside:
|
|
|
|
self.x = self.adjustSize(self.x)
|
|
|
|
self.y = self.adjustSize(self.y)
|
|
|
|
self.h = self.adjustSize(self.h)
|
|
|
|
|
2016-03-03 13:27:22 +01:00
|
|
|
x, y, h = self.x, self.y, self.h
|
|
|
|
self.latchsize = 8 * self.thickness
|
2016-08-17 15:07:41 +02:00
|
|
|
r = self.radius or min(x, y - self.latchsize) / 2.0
|
|
|
|
r = min(r, x / 2.0)
|
|
|
|
self.radius = r = min(r, max(0, (y - self.latchsize) / 2.0))
|
2016-03-03 13:27:22 +01:00
|
|
|
c4 = math.pi * r * 0.5
|
|
|
|
|
2016-06-07 20:20:35 +02:00
|
|
|
self.open()
|
2016-03-03 13:27:22 +01:00
|
|
|
|
2013-05-30 18:38:10 +02:00
|
|
|
self.moveTo(self.thickness, self.thickness)
|
|
|
|
self.surroundingWall()
|
2016-08-17 15:07:41 +02:00
|
|
|
self.moveTo(self.thickness, self.h + 5 * self.thickness)
|
2016-03-03 13:27:22 +01:00
|
|
|
self.flexBoxSide(self.x, self.y, self.radius)
|
2016-08-17 15:07:41 +02:00
|
|
|
self.moveTo(2 * self.x + 3 * self.thickness, 0)
|
2013-05-30 18:38:10 +02:00
|
|
|
self.ctx.scale(-1, 1)
|
2016-03-03 13:27:22 +01:00
|
|
|
self.flexBoxSide(self.x, self.y, self.radius)
|
2013-05-30 18:38:10 +02:00
|
|
|
|
2014-03-21 21:08:54 +01:00
|
|
|
self.close()
|
2013-05-30 18:38:10 +02:00
|
|
|
|
2016-08-17 15:07:41 +02:00
|
|
|
|
2016-03-23 22:05:06 +01:00
|
|
|
def main():
|
2016-03-03 13:27:22 +01:00
|
|
|
b = FlexBox()
|
|
|
|
b.parseArgs()
|
2013-05-30 18:38:10 +02:00
|
|
|
b.render()
|
2016-03-23 22:05:06 +01:00
|
|
|
|
2016-08-17 15:07:41 +02:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2016-03-23 22:05:06 +01:00
|
|
|
main()
|