diff --git a/DropSpindle.scad b/DropSpindle.scad new file mode 100644 index 0000000..2cc309c --- /dev/null +++ b/DropSpindle.scad @@ -0,0 +1,24 @@ +difference() +{ + //Base + translate([0,10,0]) + { + cube([5,20,3]); + } + //Cutout + translate([-3,20,-18]) + { + rotate([0,90,0]) + { + cylinder(20,20,20); + } + + } + //Hole + translate([2.5,20,0]) + { + cylinder(10,1.5,1.5); + } +} +//Stick +cylinder(50,1.5,.5);