boxespy/flexbox2.py

96 lines
3.2 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-05-30 18:38:10 +02:00
2013-06-15 23:25:31 +02:00
from boxes import *
2013-05-30 18:38:10 +02:00
import math
2013-06-15 23:25:31 +02:00
class FlexBox(Boxes):
2013-05-30 18:38:10 +02:00
def __init__(self, x, y, z, r=None, thickness=3.0):
self.x = x
self.y = y
self.z = z
self.r = r or min(x, y)/2.0
self.c4 = c4 = math.pi * r * 0.5
self.latchsize = 8*thickness
2013-05-30 18:38:10 +02:00
2013-06-25 19:45:29 +02:00
width = 2*x + y - 3*r + 2*c4 + 7*thickness + self.latchsize # lock
2013-05-30 18:38:10 +02:00
height = y + z + 8*thickness
2013-06-15 23:25:31 +02:00
Boxes.__init__(self, width, height, thickness=thickness)
2013-06-25 19:45:29 +02:00
self.fingerJointSettings = (4, 4)
2013-05-30 18:38:10 +02:00
2013-06-15 23:25:31 +02:00
@restore
2013-05-30 18:38:10 +02:00
def flexBoxSide(self, x, y, r, callback=None):
self.cc(callback, 0)
self.fingerJointEdge(x)
2013-05-30 18:38:10 +02:00
self.corner(90, 0)
self.cc(callback, 1)
self.fingerJointEdge(y-r)
2013-05-30 18:38:10 +02:00
self.corner(90, r)
self.cc(callback, 2)
self.edge(x-2*r)
self.corner(90, r)
self.cc(callback, 3)
self.latch(self.latchsize)
2013-05-30 18:38:10 +02:00
self.cc(callback, 4)
self.fingerJointEdge(y-r-self.latchsize)
2013-05-30 18:38:10 +02:00
self.corner(90)
def surroundingWall(self):
x, y, z, r = self.x, self.y, self.z, self.r
self.edges["F"](y-r, False)
if (x-2*r < 0.1):
self.flexEdge(2*self.c4, z+2*self.thickness)
else:
self.flexEdge(self.c4, z+2*self.thickness)
self.edge(x-2*r)
self.flexEdge(self.c4, z+2*self.thickness)
self.latch(self.latchsize, False)
2013-05-30 18:38:10 +02:00
self.edge(z+2*self.thickness)
self.latch(self.latchsize, False, True)
self.edge(self.c4)
2013-05-30 18:38:10 +02:00
self.edge(x-2*r)
self.edge(self.c4)
self.edges["F"](y-r)
2013-05-30 18:38:10 +02:00
self.corner(90)
self.edge(self.thickness)
self.edges["f"](z)
2013-05-30 18:38:10 +02:00
self.edge(self.thickness)
self.corner(90)
def render(self):
self.moveTo(2*self.thickness, self.thickness)
self.ctx.save()
self.surroundingWall()
self.moveTo(self.x+self.y-3*self.r+2*self.c4+self.latchsize+1*self.thickness, 0)
2013-05-30 18:38:10 +02:00
self.rectangularWall(self.x, self.z, edges="FFFF")
self.ctx.restore()
self.moveTo(0, self.z+4*self.thickness)
self.flexBoxSide(self.x, self.y, self.r)
self.moveTo(2*self.x+3*self.thickness, 0)
self.ctx.scale(-1, 1)
self.flexBoxSide(self.x, self.y, self.r)
self.ctx.scale(-1, 1)
self.moveTo(2*self.thickness, 0)
self.rectangularWall(self.z, self.y-self.r-self.latchsize, edges="fFeF")
2014-03-21 21:08:54 +01:00
self.close()
2013-05-30 18:38:10 +02:00
if __name__=="__main__":
2013-06-25 19:45:29 +02:00
b = FlexBox(70, 100, 70, r=30, thickness=3.0)
2013-05-30 18:38:10 +02:00
b.render()