more designs

This commit is contained in:
2020-12-15 14:00:31 +01:00
parent ef4b44f021
commit a277a02720
9 changed files with 250 additions and 0 deletions

11
rod_cap.scad Normal file
View File

@@ -0,0 +1,11 @@
thickness = 2;
inside = 12.5;
$fn=100;
union(){
difference(){
cylinder(r=inside/2+thickness, h=10, center=true);
translate([0,0,thickness])
cylinder(r=inside/2, h=10, center=true);
}
}