Organized files

This commit is contained in:
2017-04-20 20:18:19 -04:00
parent 7a26cab7f9
commit ada7d1cc43
5 changed files with 104 additions and 0 deletions

24
DropSpindle/stick.scad Normal file
View File

@@ -0,0 +1,24 @@
//base
cylinder(3,4,4);
translate([0,0,3])
{
cylinder(12,4,2);
}
//stick
translate([0,0,15])
{
cylinder(50,2,2);
}
//bottom rounded bit
translate([0,0,-5])
{
cylinder(5,2,4);
}
//sphere at bottom
translate([0,0,-5])
{
sphere(4);
}