NemaMount: Add finger holes to copy on another part
instead of using the base plate
This commit is contained in:
parent
642212d2ce
commit
08d7a026b1
|
@ -38,6 +38,9 @@ class NemaMount(Boxes):
|
||||||
|
|
||||||
self.open()
|
self.open()
|
||||||
|
|
||||||
|
self.rectangularWall(x, y, "ffef", callback=[
|
||||||
|
lambda: self.NEMA(self.size, x/2, y/2)], move="right")
|
||||||
|
self.rectangularTriangle(x, h, "fFe", num=2, move="right")
|
||||||
self.rectangularWall(x, h, "FFeF", callback=[
|
self.rectangularWall(x, h, "FFeF", callback=[
|
||||||
|
|
||||||
lambda:self.rectangularHole((x-holes)/2, y/2, screws, holes,
|
lambda:self.rectangularHole((x-holes)/2, y/2, screws, holes,
|
||||||
|
@ -46,8 +49,9 @@ class NemaMount(Boxes):
|
||||||
lambda:self.rectangularHole((x-holes)/2, y/2, screws, holes,
|
lambda:self.rectangularHole((x-holes)/2, y/2, screws, holes,
|
||||||
screws/2)],
|
screws/2)],
|
||||||
move="right")
|
move="right")
|
||||||
self.rectangularWall(x, y, "ffef", callback=[
|
self.moveTo(t, 0)
|
||||||
lambda: self.NEMA(self.size, x/2, y/2)], move="right")
|
self.fingerHolesAt(0.5*t, t, x, 90)
|
||||||
self.rectangularTriangle(x, h, "fFe", num=2)
|
self.fingerHolesAt(1.5*t+x, t, x, 90)
|
||||||
|
self.fingerHolesAt(t, 0.5*t, x, 0)
|
||||||
self.close()
|
self.close()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue