From bbb542b5172427bc6466590d2fc252171b3a67f0 Mon Sep 17 00:00:00 2001 From: maks-ddembinski Date: Thu, 2 Jan 2020 14:53:27 -0500 Subject: [PATCH] Started work on Music Cabinet Key --- MusicCabinetKey.scad | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 MusicCabinetKey.scad diff --git a/MusicCabinetKey.scad b/MusicCabinetKey.scad new file mode 100644 index 0000000..434f2c7 --- /dev/null +++ b/MusicCabinetKey.scad @@ -0,0 +1,22 @@ +$fn=50; +difference() { + rotate([90,0,0]) + cylinder(h=28,d1=5,d2=5, center=true); + + translate([0,-29/2,0]) + rotate([90,0,0]) + cylinder(h=10,d1=3,d2=3, center=true); + +} + +//keyway +difference(){ + translate([0,(-28/2)+4/2,-5]) + cube([3,3,7], center=true); + + translate([0,(-28/2),-4]) + cube([5,5,1], center=true); + + translate([0,(-28/2),-7]) + cube([5,5,2], center=true); +} \ No newline at end of file