SlatwallDrillbox: Base on DrillStand to reduce copied code
This commit is contained in:
parent
a364f603a8
commit
28d7dc16b9
|
@ -15,8 +15,9 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
from boxes import *
|
from boxes import *
|
||||||
|
from .drillstand import DrillStand
|
||||||
|
|
||||||
class SlatwallDrillBox(Boxes):
|
class SlatwallDrillBox(DrillStand):
|
||||||
"""Box for drills with each compartment with a different height"""
|
"""Box for drills with each compartment with a different height"""
|
||||||
|
|
||||||
ui_group = "SlatWall"
|
ui_group = "SlatWall"
|
||||||
|
@ -32,31 +33,6 @@ class SlatwallDrillBox(Boxes):
|
||||||
"--extra_height", action="store", type=float, default=15.0,
|
"--extra_height", action="store", type=float, default=15.0,
|
||||||
help="height difference left to right")
|
help="height difference left to right")
|
||||||
|
|
||||||
def yWall(self, nr, move=None):
|
|
||||||
t = self.thickness
|
|
||||||
x, sx, y, sy, sh = self.x, self.sx, self.y, self.sy, self.sh
|
|
||||||
eh = self.extra_height * (sum(sx[:nr])+ nr*t - t)/x
|
|
||||||
|
|
||||||
tw, th = sum(sy) + t * len(sy) + t, max(sh) + eh
|
|
||||||
|
|
||||||
if self.move(tw, th, move, True):
|
|
||||||
return
|
|
||||||
|
|
||||||
self.moveTo(t)
|
|
||||||
self.polyline(y, 90)
|
|
||||||
self.edges["f"](sh[-1]+eh)
|
|
||||||
self.corner(90)
|
|
||||||
for i in range(len(sy)-1, 0, -1):
|
|
||||||
s1 = max(sh[i]-sh[i-1], 0) + 4*t
|
|
||||||
s2 = max(sh[i-1]-sh[i], 0) + 4*t
|
|
||||||
|
|
||||||
self.polyline(sy[i], 90, s1, -90, t, -90, s2, 90)
|
|
||||||
self.polyline(sy[0], 90)
|
|
||||||
self.edges["f"](sh[0] + eh)
|
|
||||||
self.corner(90)
|
|
||||||
|
|
||||||
self.move(tw, th, move)
|
|
||||||
|
|
||||||
def sideWall(self, extra_height=0.0, move=None):
|
def sideWall(self, extra_height=0.0, move=None):
|
||||||
t = self.thickness
|
t = self.thickness
|
||||||
x, sx, y, sy, sh = self.x, self.sx, self.y, self.sy, self.sh
|
x, sx, y, sy, sh = self.x, self.sx, self.y, self.sy, self.sh
|
||||||
|
@ -85,92 +61,6 @@ class SlatwallDrillBox(Boxes):
|
||||||
|
|
||||||
self.move(tw, th, move)
|
self.move(tw, th, move)
|
||||||
|
|
||||||
def xWall(self, nr, move=None):
|
|
||||||
t = self.thickness
|
|
||||||
x, sx, y, sy, sh = self.x, self.sx, self.y, self.sy, self.sh
|
|
||||||
eh = self.extra_height
|
|
||||||
|
|
||||||
tw, th = x + 2*t, sh[nr] + eh + t
|
|
||||||
|
|
||||||
a = math.degrees(math.atan(eh / x))
|
|
||||||
fa = 1 / math.cos(math.radians(a))
|
|
||||||
|
|
||||||
if self.move(tw, th, move, True):
|
|
||||||
return
|
|
||||||
|
|
||||||
|
|
||||||
self.moveTo(t, eh+t, -a)
|
|
||||||
|
|
||||||
for i in range(len(sx)-1):
|
|
||||||
self.edges["f"](fa*sx[i])
|
|
||||||
h = min(sh[nr - 1], sh[nr])
|
|
||||||
s1 = h - 3.95*t + self.extra_height * (sum(sx[:i+1]) + i*t)/x
|
|
||||||
s2 = h - 3.95*t + self.extra_height * (sum(sx[:i+1]) + i*t + t)/x
|
|
||||||
|
|
||||||
self.polyline(0, 90+a, s1, -90, t, -90, s2, 90-a)
|
|
||||||
self.edges["f"](fa*sx[-1])
|
|
||||||
self.polyline(0, 90+a)
|
|
||||||
self.edges["f"](sh[nr]+eh)
|
|
||||||
self.polyline(0, 90, x, 90)
|
|
||||||
self.edges["f"](sh[nr])
|
|
||||||
self.polyline(0, 90+a)
|
|
||||||
|
|
||||||
self.move(tw, th, move)
|
|
||||||
|
|
||||||
def xOutsideWall(self, h, edges="fFeF", move=None):
|
|
||||||
t = self.thickness
|
|
||||||
x, sx, y, sy, sh = self.x, self.sx, self.y, self.sy, self.sh
|
|
||||||
|
|
||||||
edges = [self.edges.get(e, e) for e in edges]
|
|
||||||
eh = self.extra_height
|
|
||||||
|
|
||||||
tw = x + edges[1].spacing() + edges[3].spacing()
|
|
||||||
th = h + eh + edges[0].spacing() + edges[2].spacing()
|
|
||||||
|
|
||||||
a = math.degrees(math.atan(eh / x))
|
|
||||||
fa = 1 / math.cos(math.radians(a))
|
|
||||||
|
|
||||||
if self.move(tw, th, move, True):
|
|
||||||
return
|
|
||||||
|
|
||||||
|
|
||||||
self.moveTo(edges[3].spacing(), eh+edges[0].margin(), -a)
|
|
||||||
|
|
||||||
edges[0](x*fa)
|
|
||||||
self.corner(a)
|
|
||||||
self.edgeCorner(edges[0], edges[1], 90)
|
|
||||||
edges[1](eh+h)
|
|
||||||
self.edgeCorner(edges[1], edges[2], 90)
|
|
||||||
edges[2](x)
|
|
||||||
self.edgeCorner(edges[2], edges[3], 90)
|
|
||||||
edges[3](h)
|
|
||||||
self.edgeCorner(edges[3], edges[0], 90)
|
|
||||||
|
|
||||||
self.moveTo(0, self.burn+edges[0].startwidth(), 0)
|
|
||||||
|
|
||||||
for i in range(1, len(sx)):
|
|
||||||
posx = sum(sx[:i]) + i*t - 0.5 * t
|
|
||||||
length = h + self.extra_height * (sum(sx[:i]) + i*t - t)/x
|
|
||||||
self.fingerHolesAt(posx, h, length, -90)
|
|
||||||
|
|
||||||
self.move(tw, th, move)
|
|
||||||
|
|
||||||
def bottomCB(self):
|
|
||||||
t = self.thickness
|
|
||||||
x, sx, y, sy, sh = self.x, self.sx, self.y, self.sy, self.sh
|
|
||||||
eh = self.extra_height
|
|
||||||
|
|
||||||
a = math.degrees(math.atan(eh / x))
|
|
||||||
fa = 1 / math.cos(math.radians(a))
|
|
||||||
|
|
||||||
posy = -0.5 * t
|
|
||||||
for i in range(len(sy)-1):
|
|
||||||
posy += sy[i] + t
|
|
||||||
posx = 0
|
|
||||||
for j in range(len(sx)):
|
|
||||||
self.fingerHolesAt(posx, posy, fa*sx[j], 0)
|
|
||||||
posx += fa*sx[j] + fa*t
|
|
||||||
|
|
||||||
def render(self):
|
def render(self):
|
||||||
# Add slat wall edges
|
# Add slat wall edges
|
||||||
s = edges.SlatWallSettings(self.thickness, True,
|
s = edges.SlatWallSettings(self.thickness, True,
|
||||||
|
@ -183,12 +73,14 @@ class SlatwallDrillBox(Boxes):
|
||||||
self.x = x = sum(sx) + len(sx)*t - t
|
self.x = x = sum(sx) + len(sx)*t - t
|
||||||
self.y = y = sum(sy) + len(sy)*t - t
|
self.y = y = sum(sy) + len(sy)*t - t
|
||||||
|
|
||||||
|
bottom_angle = math.atan(self.extra_height / x) # radians
|
||||||
|
|
||||||
self.xOutsideWall(sh[0], "fFeF", move="up")
|
self.xOutsideWall(sh[0], "fFeF", move="up")
|
||||||
for i in range(1, len(sy)):
|
for i in range(1, len(sy)):
|
||||||
self.xWall(i, move="up")
|
self.xWall(i, move="up")
|
||||||
self.xOutsideWall(sh[-1], "fCec", move="up")
|
self.xOutsideWall(sh[-1], "fCec", move="up")
|
||||||
|
|
||||||
self.rectangularWall((x**2+self.extra_height**2)**0.5, y, "FeFe", callback=[self.bottomCB], move="up")
|
self.rectangularWall(x/math.cos(bottom_angle)-t*math.tan(bottom_angle), y, "FeFe", callback=[self.bottomCB], move="up")
|
||||||
|
|
||||||
self.sideWall(move="right")
|
self.sideWall(move="right")
|
||||||
for i in range(1, len(sx)):
|
for i in range(1, len(sx)):
|
||||||
|
|
Loading…
Reference in New Issue