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

9
rod.scad Normal file
View File

@@ -0,0 +1,9 @@
diam = 12.5;
difference()
{
translate([0,0,4.5])
rotate([90,0,0])
cylinder(r=diam/2, h=200, center=true, $fn=100);
translate([0,0,-250])
cube(size=[500, 500, 500], center=true);
}