diff options
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/bugs/issue582.scad | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testdata/scad/bugs/issue582.scad b/testdata/scad/bugs/issue582.scad new file mode 100644 index 0000000..f2e8152 --- /dev/null +++ b/testdata/scad/bugs/issue582.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); |