blob: 2bd7d7351bd6d546701056bb7d2ac7a92124e16c (
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
|
// 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();
// Empty
hull();
// No children
hull() { }
|