summaryrefslogtreecommitdiff
path: root/testdata/scad/features/hull3-tests.scad
blob: a3e7d9297c9cd730f87009080d9717b2e9f785e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 3d not currently implemented
module convex3dSimple() {
    hull() {
        translate([15,10]) cylinder(r=10);
        cylinder(r=10);
    }
}

// 3d not currently implemented
module convex3dHole() {
    hull() {
        translate([15,10,0]) cylinder(10);
        difference() {
            cylinder(10);
            cylinder(5);
        }
    }
}

translate([0,40,0]) convex3dHole();
translate([40,40,0]) convex3dSimple();
contact: Jan Huwald // Impressum