From a944346ebce9e0e465f77789e54004ae2e0a0741 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lauri=20V=C3=B5sandi?= Date: Wed, 8 Sep 2021 15:08:23 +0300 Subject: [PATCH] Add banana plug separators --- banana-plug-separator.scad | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 banana-plug-separator.scad diff --git a/banana-plug-separator.scad b/banana-plug-separator.scad new file mode 100644 index 0000000..78611e6 --- /dev/null +++ b/banana-plug-separator.scad @@ -0,0 +1,10 @@ +linear_extrude(2) { + difference() { + hull() { + translate([-25/2,0]) circle(d=14, $fn=100); + translate([25/2,0]) circle(d=14, $fn=100); + } + translate([-25/2,0]) circle(d=7, $fn=100); + translate([25/2,0]) circle(d=7, $fn=100); + } +}