summaryrefslogtreecommitdiff
path: root/examples/example015.scad
blob: 21789b4fb93a63b08d9d703094003d0c034d01fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

module shape()
{
	difference()
	{
		translate([ -35, -35 ]) intersection()
		{
			union() {
				difference() {
					square(100, true);
					square(50, true);
				}
				translate([ 50, 50 ])
					square(15, true);
			}
			rotate(45) translate([ 0, -15 ]) square([ 100, 30 ]);
		}
	
		rotate(-45) scale([ 0.7, 1.3 ]) circle(5);
	}
	
	import_dxf(filename = "example009.dxf",
			layername = "body", convexity = 6, scale=2);
}

// linear_extrude(convexity = 10, center = true)
shape();

contact: Jan Huwald // Impressum