diff options
author | Marius Kintel <marius@kintel.net> | 2013-12-31 06:20:38 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-12-31 06:20:38 (GMT) |
commit | df731159d4abb15cc6d5f1c153beb498421789c3 (patch) | |
tree | 8a349c31f3e7f3a2011ccfeafdc708001dc11e53 /testdata | |
parent | 46a9af8594b4ce16d4ca55ebf59e2fd7a847081c (diff) |
Removed obsolete tests
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/bugs/polygon-touch.scad | 5 | ||||
-rw-r--r-- | testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad | 9 |
2 files changed, 0 insertions, 14 deletions
diff --git a/testdata/scad/bugs/polygon-touch.scad b/testdata/scad/bugs/polygon-touch.scad deleted file mode 100644 index afa2938..0000000 --- a/testdata/scad/bugs/polygon-touch.scad +++ /dev/null @@ -1,5 +0,0 @@ -# Somehow the 2D union/tessellation algorithm doesn't support touching polygons -# Changing translate([-10,-10,0]) to translate([-9.99,-9.99,0]) works - -square([10,10]); -translate([-10,-10,0]) square([10,10]); diff --git a/testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad b/testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad deleted file mode 100644 index 754a2a6..0000000 --- a/testdata/scad/bugs/rotate-diff-nonmanifold-crash.scad +++ /dev/null @@ -1,9 +0,0 @@ -difference() { - rotate_extrude($fn=5) translate([4,0,0]) square([10, 10], center=true); - translate([6,6,6]) sphere(r=10); -} - -union() { - rotate_extrude($fn=5) translate([4,0,0]) square([10, 10], center=true); - cylinder(h=5,r=3); -} |