2017-01-19 21:36:43 +01:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# 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/>.
|
|
|
|
|
|
|
|
from boxes import *
|
|
|
|
|
|
|
|
|
|
|
|
class RoundedBox(Boxes):
|
|
|
|
"""Box with rounded corners"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
Boxes.__init__(self)
|
2017-02-09 18:47:20 +01:00
|
|
|
self.addSettingsArgs(edges.FingerJointSettings)
|
2017-01-19 21:36:43 +01:00
|
|
|
self.buildArgParser("x", "y", "h", "outside")
|
|
|
|
self.argparser.add_argument(
|
|
|
|
"--radius", action="store", type=float, default=15,
|
|
|
|
help="Radius of the corners in mm")
|
2017-01-21 13:52:33 +01:00
|
|
|
self.argparser.add_argument(
|
|
|
|
"--top", action="store", type=str, default="none",
|
|
|
|
choices=["closed", "hole", "lid",],
|
|
|
|
help="style of the top and lid")
|
|
|
|
|
|
|
|
def hole(self):
|
|
|
|
t = self.thickness
|
|
|
|
x, y, r = self.x, self.y, self.radius
|
|
|
|
|
|
|
|
if r > 2*t:
|
|
|
|
r -= 2*t
|
|
|
|
else:
|
|
|
|
x += 2*t - 2*r
|
|
|
|
y += 2*t - 2*r
|
|
|
|
self.moveTo(2*t-r, 0)
|
|
|
|
r = 0
|
|
|
|
|
|
|
|
lx = x - 2*r - 6*t
|
|
|
|
ly = y - 2*r - 6*t
|
|
|
|
|
|
|
|
self.moveTo(0, 2*t)
|
|
|
|
for l in (lx, ly, lx, ly):
|
|
|
|
self.edge(l);
|
|
|
|
self.corner(90, r)
|
2017-01-19 21:36:43 +01:00
|
|
|
|
|
|
|
def render(self):
|
|
|
|
self.open()
|
|
|
|
|
|
|
|
x, y, h, r = self.x, self.y, self.h, self.radius
|
|
|
|
|
|
|
|
if self.outside:
|
|
|
|
x = self.adjustSize(x)
|
|
|
|
y = self.adjustSize(y)
|
|
|
|
h = self.adjustSize(h)
|
|
|
|
|
2017-01-21 13:52:33 +01:00
|
|
|
r = self.radius = min(r, y / 2.0)
|
|
|
|
|
2017-01-19 21:36:43 +01:00
|
|
|
t = self.thickness
|
|
|
|
|
|
|
|
self.ctx.save()
|
|
|
|
self.roundedPlate(x, y, r, move="right")
|
2017-01-21 13:52:33 +01:00
|
|
|
self.roundedPlate(x, y, r, move="right",
|
|
|
|
callback=[self.hole] if self.top != "closed" else None)
|
|
|
|
if self.top == "lid":
|
|
|
|
self.roundedPlate(x, y, r, "E", move="right")
|
2017-01-19 21:36:43 +01:00
|
|
|
self.ctx.restore()
|
|
|
|
self.roundedPlate(x, y, r, move="up only")
|
|
|
|
|
|
|
|
self.surroundingWall(x, y, r, h, "F", "F")
|
|
|
|
|
|
|
|
self.close()
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
b = RoundedBox()
|
|
|
|
b.parseArgs()
|
|
|
|
b.render()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|