A few OpenSCAD sample files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
289 B

$fa=1;
$fs=0.5;
difference() {
cylinder(d=30, h=5, center=true);
cylinder(d=25, h=6, center=true);
}
difference() {
cylinder(d=15, h=5, center=true);
cylinder(d=10, h=6, center=true);
}
for(t=[0:30:369])
rotate([0,0,t])
translate([10,0,0])
sphere(d=5, center=true);