Cleaned up and added openscad parametric box
This commit is contained in:
24
misc/DropSpindle/DropSpindle.scad
Normal file
24
misc/DropSpindle/DropSpindle.scad
Normal file
@@ -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);
|
||||
24
misc/DropSpindle/stick.scad
Normal file
24
misc/DropSpindle/stick.scad
Normal 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);
|
||||
}
|
||||
Reference in New Issue
Block a user