diff options
author | Marius Kintel <marius@kintel.net> | 2012-10-09 00:44:48 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-10-09 00:44:48 (GMT) |
commit | 9c9781334aee87f32926cfd465839c4e5026a65d (patch) | |
tree | fe67deb8d0ca24aba5171feb95c292155b360981 | |
parent | 1fe573864cf94afa525683119e26b368fb761ce9 (diff) |
Added testcase for issue #204
-rw-r--r-- | testdata/scad/bugs/issue204.scad | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testdata/scad/bugs/issue204.scad b/testdata/scad/bugs/issue204.scad new file mode 100644 index 0000000..f2e8152 --- /dev/null +++ b/testdata/scad/bugs/issue204.scad @@ -0,0 +1,5 @@ +// Causes a CGAL assertion in CGALEvaluator::process() +e=0.000; +for (m = [ [ [ 0, 1, 0], [ 0, 0, 1], [ 1, 0, 0] ], + [ [-1, 0, e], [ 0,-1, 0], [ 0, 0,-1] ] ] ) + multmatrix (m) cube([1,5,1], center=true); |