commit 987290e5ba40ae5b33f876ba913eb6a5358458e2 Author: Drayton Munster Date: Wed Jun 2 12:31:56 2021 -0400 initial coupler 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