From 714d2d4003076be91b289dc1747802c3f7a8caf3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Thu, 4 Nov 2021 22:30:38 +0200 Subject: [PATCH] Add power socket cutouts --- power-sockets.scad | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 power-sockets.scad diff --git a/power-sockets.scad b/power-sockets.scad new file mode 100644 index 0000000..19a0ec4 --- /dev/null +++ b/power-sockets.scad @@ -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); + } +}