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