diff options
author | Marius Kintel <marius@kintel.net> | 2011-05-01 04:40:57 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-05-01 04:40:57 (GMT) |
commit | 50e59e94e25fd500ec8bcaef869da53674040ab4 (patch) | |
tree | 64ea315a7258a97457cefb6506c9b443cfc1d9ec /testdata/scad/polyset-reduce-crash.scad | |
parent | 75c06de2db9c3ae78f842187b86b736453cba0c1 (diff) |
Reorganized regression test folders
Diffstat (limited to 'testdata/scad/polyset-reduce-crash.scad')
-rw-r--r-- | testdata/scad/polyset-reduce-crash.scad | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/testdata/scad/polyset-reduce-crash.scad b/testdata/scad/polyset-reduce-crash.scad deleted file mode 100644 index ce9fae7..0000000 --- a/testdata/scad/polyset-reduce-crash.scad +++ /dev/null @@ -1,38 +0,0 @@ -N=20; - -rotate (a = [0, 0, 36]) { - union() { - translate ([1, 0]) { - polygon (points = [[(N - 1)*cos(180/N), -(N - 1)*sin(180/N)], - [(N - 3)*cos(270/N), -(N - 3)*sin(270/N)], - [(N - 1)*cos(270/N), -(N - 1)*sin(270/N)]]); - - polygon (points = [[(N - 1)*cos(180/N), -(N - 1)*sin(180/N)], - [(N - 3)*cos(180/N), -(N - 3)*sin(180/N)], - [(N - 3)*cos(270/N), -(N - 3)*sin(270/N)]]); - - polygon (points = [[N - 1, 0], [N - 3, 0], - [(N - 3)*cos(180/N), -(N - 3)*sin(180/N)]]); - - polygon (points = [[N - 1, 0], - [(N - 3)*cos(180/N), -(N - 3)*sin(180/N)], - [(N - 1)*cos(180/N), -(N - 1)*sin(180/N)]]); - - polygon (points = [[N - 1, 0], [N - 3, 0], - [(N - 3)*cos(180/N), (N - 3)*sin(180/N)]]); - - polygon (points = [[N - 1, 0], - [(N - 3)*cos(180/N), (N - 3)*sin(180/N)], - [(N - 1)*cos(180/N), (N - 1)*sin(180/N)]]); - - polygon (points = [[(N - 1)*cos(180/N), (N - 1)*sin(180/N)], - [(N - 3)*cos(180/N), (N - 3)*sin(180/N)], - [(N - 3)*cos(270/N), (N - 3)*sin(270/N)]]); - - polygon (points = [[(N - 1)*cos(180/N), (N - 1)*sin(180/N)], - [(N - 3)*cos(270/N), (N - 3)*sin(270/N)], - [(N - 1)*cos(270/N), (N - 1)*sin(270/N)]]); - } - circle (r = 20); - } -} |