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

16 lines
365 B
OpenSCAD

difference(){
linear_extrude (height=5)
import (file="platform.dxf", layer="0", $fn=100);
union(){
translate([6.0656,44.5,2.5])
rotate([90,0,30])
cylinder(r=1.5, h=72 ,$fn=100);
translate([-6.0656,44.5,2.5])
rotate([90,0,-30])
cylinder(r=1.5, h=72 ,$fn=100);
translate([-36.4,-28.25,2.5])
rotate([90,0,90])
cylinder(r=1.5, h=72 ,$fn=100);
}
}