boxespy/boxes/generators/silverwarebox.py

96 lines
3.0 KiB
Python
Raw Normal View History

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-04-16 05:07:26 +02:00
from boxes import Boxes
class Silverware(Boxes):
2016-03-15 21:29:03 +01:00
"""Not yet parametrized cuttlery stand with carrying grip
using flex for rounded corners"""
2013-04-16 05:07:26 +02:00
####################################################################
### Parts
####################################################################
2013-04-16 05:22:20 +02:00
def basePlate(self, x, y, r):
self.roundedPlate(x, y, r, callback=[
2013-07-08 23:20:30 +02:00
lambda: self.fingerHolesAt(x/3.0-r, 0, 0.5*(y-self.thickness)),
lambda: self.fingerHolesAt(x/6.0, 0, 0.5*(y-self.thickness)),
2013-04-16 05:22:20 +02:00
lambda: self.fingerHolesAt(y/2.0-r, 0, x),
2013-07-08 23:20:30 +02:00
lambda: self.fingerHolesAt(x/2.0-r, 0, 0.5*(y-self.thickness))
2013-04-16 05:22:20 +02:00
])
2013-04-16 05:07:26 +02:00
def wall(self, x=100, y=100, h=100, r=0):
self.surroundingWall(x,y,r,h, bottom='h', callback={
2013-06-29 13:57:56 +02:00
0 : lambda: self.fingerHolesAt(x/6.0, 0, h-10),
4 : lambda: self.fingerHolesAt(x/3.0-r, 0, h-10),
1 : lambda: self.fingerHolesAt(y/2.0-r, 0, h-10),
3 : lambda: self.fingerHolesAt(y/2.0-r, 0, h-10),
2 : lambda: self.fingerHolesAt(x/2.0-r, 0, h-10),
},
move="up")
2013-04-16 05:07:26 +02:00
def centerWall(self, x, h):
self.ctx.save()
self.moveTo(self.edges["f"].spacing(), self.edges["f"].spacing())
2013-04-16 05:07:26 +02:00
for i in range(2, 5):
2013-06-29 13:57:56 +02:00
self.fingerHolesAt(i*x/6.0, 0, h-10)
2013-04-16 05:07:26 +02:00
self.edges["f"](x)
2013-04-16 05:07:26 +02:00
self.corner(90)
self.edges["f"](h-10)
2013-04-16 05:07:26 +02:00
self.corner(90)
self.handle(x, 150, 120)
2013-06-29 13:57:56 +02:00
#self.handle(x, 40, 30, r=2)
2013-04-16 05:07:26 +02:00
self.corner(90)
self.edges["f"](h-10)
2013-04-16 05:07:26 +02:00
self.corner(90)
self.ctx.restore()
self.moveTo(x+2*self.edges["f"].spacing())
2013-04-16 05:07:26 +02:00
##################################################
### main
##################################################
2016-03-08 22:27:55 +01:00
def render(self):
x, y, h, r = 250, 250/1.618, 120, 30
self.open(750, 450)
2013-06-29 13:57:56 +02:00
t = self.thickness
b = self.burn
2013-04-16 05:07:26 +02:00
2013-06-29 13:57:56 +02:00
self.wall(x, y, h, r)
self.centerWall(x,h)
2013-04-16 05:07:26 +02:00
2013-06-29 13:57:56 +02:00
l = (y-t)/2.0
2013-04-16 05:07:26 +02:00
for i in range(3):
self.rectangularWall(l, h-10, edges="ffef", move="right")
2013-04-16 05:07:26 +02:00
self.moveTo(-3.0*(l+2*t+8*b), h-10+2*t+8*b)
2013-04-16 05:07:26 +02:00
self.basePlate(x, y, r)
2014-03-21 21:08:54 +01:00
self.close()
2013-04-16 05:07:26 +02:00
2016-03-23 22:05:06 +01:00
def main():
b = Silverware()
b.parseArgs()
2016-03-08 22:27:55 +01:00
b.render()
2016-03-23 22:05:06 +01:00
if __name__ == '__main__':
main()