From 987290e5ba40ae5b33f876ba913eb6a5358458e2 Mon Sep 17 00:00:00 2001 From: Drayton Munster Date: Wed, 2 Jun 2021 12:31:56 -0400 Subject: [PATCH] initial coupler --- coupling.scad | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 coupling.scad diff --git a/coupling.scad b/coupling.scad new file mode 100644 index 0000000..6d969c5 --- /dev/null +++ b/coupling.scad @@ -0,0 +1,28 @@ +q = 100; +hole_angle = 27; +inner_height = 18; + +difference(){ +union(){ + linear_extrude(height=2.5){ + difference(){ + circle(d=25, $fn=q); + circle(d=12.5, $fn=q); + }; + } + +// linear_extrude(height=18){ + linear_extrude(height=inner_height){ + difference(){ + circle(d=20, $fn=q); + circle(d=14.5, $fn=6); + }; + } +} + +rotate([0, 90, hole_angle]){ + translate([-5,0,-12.5]){ + cylinder(25, 5/2, 5/2, $fn=q); + } +} +} \ No newline at end of file