2019-09-23 23:44:02 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# Copyright (C) 2013-2019 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 BayonetBox(Boxes):
|
|
|
|
"""Round box made from layers with twist on top"""
|
|
|
|
|
2022-01-11 09:09:32 +01:00
|
|
|
description = """Glue together - all outside rings to the bottom, all inside rings to the top."""
|
2019-09-23 23:44:02 +02:00
|
|
|
ui_group = "Box"
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
Boxes.__init__(self)
|
|
|
|
|
|
|
|
self.argparser.add_argument(
|
|
|
|
"--diameter", action="store", type=float, default=50.,
|
|
|
|
help="Diameter of the box in mm")
|
|
|
|
self.argparser.add_argument(
|
|
|
|
"--lugs", action="store", type=int, default=10,
|
|
|
|
help="number of locking lugs")
|
2020-10-13 16:07:31 +02:00
|
|
|
self.argparser.add_argument(
|
|
|
|
"--alignment_pins", action="store", type=float, default=1.0,
|
|
|
|
help="diameter of the alignment pins")
|
2019-09-23 23:44:02 +02:00
|
|
|
self.buildArgParser("outside")
|
|
|
|
|
2020-10-13 16:07:31 +02:00
|
|
|
def alignmentHoles(self, inner=False, outer=False):
|
|
|
|
d = self.diameter
|
|
|
|
r = d / 2
|
|
|
|
t = self.thickness
|
|
|
|
p = 0.05*t
|
|
|
|
l = self.lugs
|
|
|
|
|
|
|
|
a = 180 / l
|
|
|
|
with self.saved_context():
|
|
|
|
for i in range(3):
|
|
|
|
if outer:
|
|
|
|
self.hole(r-t/2, 0, d=self.alignment_pins)
|
|
|
|
if inner:
|
|
|
|
self.hole(r-2*t-p, 0, d=self.alignment_pins)
|
|
|
|
self.moveTo(0, 0, 360/3)
|
|
|
|
|
2020-06-23 19:17:05 +02:00
|
|
|
def lowerLayer(self, asPart=False, move=None):
|
2019-09-23 23:44:02 +02:00
|
|
|
d = self.diameter
|
|
|
|
r = d / 2
|
|
|
|
t = self.thickness
|
|
|
|
p = 0.05*t
|
|
|
|
l = self.lugs
|
|
|
|
|
|
|
|
a = 180 / l
|
2020-06-23 19:17:05 +02:00
|
|
|
|
|
|
|
if asPart:
|
|
|
|
if self.move(d, d, move, True):
|
|
|
|
return
|
|
|
|
self.moveTo(d/2, d/2)
|
2019-09-23 23:44:02 +02:00
|
|
|
|
2020-10-13 16:07:31 +02:00
|
|
|
self.alignmentHoles(inner=True)
|
2019-09-23 23:44:02 +02:00
|
|
|
self.hole(0, 0, r=d/2 - 2.5*t)
|
|
|
|
self.moveTo(d/2 - 1.5*t, 0, -90)
|
|
|
|
|
|
|
|
for i in range(l):
|
|
|
|
self.polyline(0, (-4/3*a, r-1.5*t), 0, 90, 0.5*t, -90, 0, (-2/3*a, r-t), 0, -90, 0.5*t, 90)
|
|
|
|
|
2020-06-23 19:17:05 +02:00
|
|
|
if asPart:
|
|
|
|
self.move(d, d, move)
|
|
|
|
|
|
|
|
def lowerCB(self):
|
|
|
|
d = self.diameter
|
|
|
|
r = d / 2
|
|
|
|
t = self.thickness
|
|
|
|
p = 0.05*t
|
|
|
|
l = self.lugs
|
|
|
|
|
|
|
|
a = 180 / l
|
|
|
|
|
2020-10-13 16:07:31 +02:00
|
|
|
self.alignmentHoles(outer=True)
|
2020-06-23 19:17:05 +02:00
|
|
|
with self.saved_context():
|
|
|
|
self.lowerLayer()
|
|
|
|
|
|
|
|
self.moveTo(d/2 - 1.5*t+p, 0, -90)
|
2019-09-23 23:44:02 +02:00
|
|
|
for i in range(l):
|
|
|
|
self.polyline(0, (-2/3*a, r-1.5*t+p), 0, 90, 0.5*t, -90, 0, (-4/3*a, r-t+p), 0, -90, 0.5*t, 90)
|
2020-06-23 19:17:05 +02:00
|
|
|
|
2019-09-23 23:44:02 +02:00
|
|
|
|
|
|
|
def upperCB(self):
|
|
|
|
d = self.diameter
|
|
|
|
r = d / 2
|
|
|
|
t = self.thickness
|
|
|
|
p = 0.05*t
|
|
|
|
l = self.lugs
|
|
|
|
|
|
|
|
a = 180 / l
|
|
|
|
|
|
|
|
self.hole(0, 0, r=d/2 - 2.5*t)
|
|
|
|
self.hole(0, 0, r=d/2 - 1.5*t)
|
2020-10-13 16:07:31 +02:00
|
|
|
self.alignmentHoles(inner=True, outer=True)
|
2019-09-23 23:44:02 +02:00
|
|
|
self.moveTo(d/2 - 1.5*t, 0, -90)
|
|
|
|
|
|
|
|
for i in range(l):
|
|
|
|
self.polyline(0, (-1.3*a, r-1.5*t+p), 0, 90, 0.5*t, -90, 0, (-0.7*a, r-t+p), 0, -90, 0.5*t, 90)
|
|
|
|
|
|
|
|
|
|
|
|
def render(self):
|
|
|
|
d = self.diameter
|
|
|
|
t = self.thickness
|
|
|
|
p = 0.05*t
|
|
|
|
|
|
|
|
if not self.outside:
|
|
|
|
self.diameter = d = d - 3*t
|
|
|
|
|
|
|
|
|
2020-10-13 16:07:31 +02:00
|
|
|
self.parts.disc(d, callback=lambda: self.alignmentHoles(outer=True), move="right")
|
|
|
|
self.parts.disc(d, callback=lambda: (self.alignmentHoles(outer=True), self.hole(0, 0, d/2-1.5*t)), move="right")
|
2019-09-23 23:44:02 +02:00
|
|
|
self.parts.disc(d, callback=self.lowerCB, move="right")
|
|
|
|
self.parts.disc(d, callback=self.upperCB, move="right")
|
2020-10-13 16:07:31 +02:00
|
|
|
self.parts.disc(d, callback=lambda : self.alignmentHoles(inner=True),move="right")
|