summaryrefslogtreecommitdiff
path: root/testdata/scad/features/hull3-tests.scad
diff options
context:
space:
mode:
Diffstat (limited to 'testdata/scad/features/hull3-tests.scad')
-rw-r--r--testdata/scad/features/hull3-tests.scad27
1 files changed, 27 insertions, 0 deletions
diff --git a/testdata/scad/features/hull3-tests.scad b/testdata/scad/features/hull3-tests.scad
new file mode 100644
index 0000000..2bd7d73
--- /dev/null
+++ b/testdata/scad/features/hull3-tests.scad
@@ -0,0 +1,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() { }
+
contact: Jan Huwald // Impressum