Speaker binding post drill template for Merten dummy cover

This commit is contained in:
Lauri Võsandi 2021-11-05 08:50:48 +02:00
parent 33851b6409
commit 1255621b14
1 changed files with 14 additions and 0 deletions

14
binding-posts.scad Normal file
View File

@ -0,0 +1,14 @@
difference() {
// Mold inside
square(51, center=true);
// Cutouts
translate([51/2, 0]) square([16, 28], center=true);
translate([-51/2, 0]) square([16, 28], center=true);
translate([0, 51/2]) square([41, 6], center=true);
translate([0, -51/2]) square([41, 6], center=true);
// Binding posts
translate([0, -12]) circle(d=4, $fn=100);
translate([0, 12]) circle(d=4, $fn=100);
}