speakers/kormoran.scad

28 lines
539 B
OpenSCAD

B = 19.05; // Bushing outer diameter
M = 6.35; // Mill diameter
J = 100; // Mill pad
A = 5; // Alignment pad size
P = 17; // Alignment pad placement
BD = B - M; // Bushing offset
W = 150+15+15;
H = 280+15+15;
translate([200, 0])
difference() {
square([W, H], center=true);
translate([-182/2+117, +312/2-82])
difference() {
circle(d=90+BD);
circle(d=65+BD);
}
}
difference() {
square([W, H], center=true);
translate([0, -312/2+110])
difference() {
circle(d=146+BD, $fn=100);
circle(d=119+BD, $fn=100);
}
}