blob: 18f1f04269c77032cb887547b92ed320796bc92f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
intersection()
{
dxf_linear_extrude(file = "example013.dxf",
height = 100, center = true, convexity= 3);
rotate([0, 90, 0])
dxf_linear_extrude(file = "example013.dxf",
height = 100, center = true, convexity= 3);
rotate([90, 0, 0])
dxf_linear_extrude(file = "example013.dxf",
height = 100, center = true, convexity= 3);
}
|