summaryrefslogtreecommitdiff
path: root/testdata/scad/hull-tests.scad
diff options
context:
space:
mode:
authorMarius Kintel <marius@kintel.net>2011-05-01 04:40:57 (GMT)
committerMarius Kintel <marius@kintel.net>2011-05-01 04:40:57 (GMT)
commit50e59e94e25fd500ec8bcaef869da53674040ab4 (patch)
tree64ea315a7258a97457cefb6506c9b443cfc1d9ec /testdata/scad/hull-tests.scad
parent75c06de2db9c3ae78f842187b86b736453cba0c1 (diff)
Reorganized regression test folders
Diffstat (limited to 'testdata/scad/hull-tests.scad')
-rw-r--r--testdata/scad/hull-tests.scad43
1 files changed, 0 insertions, 43 deletions
diff --git a/testdata/scad/hull-tests.scad b/testdata/scad/hull-tests.scad
deleted file mode 100644
index 3114ac5..0000000
--- a/testdata/scad/hull-tests.scad
+++ /dev/null
@@ -1,43 +0,0 @@
-// Works correctly
-module convex2dSimple() {
- hull() {
- translate([15,10]) circle(10);
- circle(10);
- }
-}
-
-// Works correctly
-module convex2dHole() {
- hull() {
- translate([15,10,0]) circle(10);
- difference() {
- circle(10);
- circle(5);
- }
- }
-}
-
-// 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);
- }
- }
-}
-
-
-convex2dHole();
-translate([40,0,0]) convex2dSimple();
-translate([0,40,0]) convex3dHole();
-translate([40,40,0]) convex3dSimple();
contact: Jan Huwald // Impressum