diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-06 20:01:42 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-06 20:01:42 (GMT) |
commit | a93e6449804e75e351ac46a84ceff8f034ddd25d (patch) | |
tree | ac6eb3dd4917f587d8808030a0c5ffc82658849e /testdata/scad/features/hull-tests.scad | |
parent | cd6299922d7a79ab8306ed15782b6fa5b0c34c36 (diff) |
Added hull tests
Diffstat (limited to 'testdata/scad/features/hull-tests.scad')
-rw-r--r-- | testdata/scad/features/hull-tests.scad | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/testdata/scad/features/hull-tests.scad b/testdata/scad/features/hull-tests.scad deleted file mode 100644 index 3114ac5..0000000 --- a/testdata/scad/features/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(); |