Add power socket cutouts

This commit is contained in:
Lauri Võsandi 2021-11-04 22:30:38 +02:00
parent e1163c8618
commit 714d2d4003
1 changed files with 13 additions and 0 deletions

13
power-sockets.scad Normal file
View File

@ -0,0 +1,13 @@
Dstep = 71;
Margin = 3.125; // 6.35mill; 12.7mm bushing
Acutout = 55;
difference() {
square([Dstep*5+100, Acutout + 100], center=true);
for (i = [-2, -1, 0, 1, 2]){
translate([i*Dstep, 0])
offset(r=Margin)
square([Acutout, Acutout], center=true);
}
}