diff options
Diffstat (limited to 'testdata/scad/bugs/minkowski-assert.scad')
-rw-r--r-- | testdata/scad/bugs/minkowski-assert.scad | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/testdata/scad/bugs/minkowski-assert.scad b/testdata/scad/bugs/minkowski-assert.scad deleted file mode 100644 index e259514..0000000 --- a/testdata/scad/bugs/minkowski-assert.scad +++ /dev/null @@ -1,20 +0,0 @@ -/* - Originally reported by chrysn 20100516: - - terminate called after throwing an instance of 'CGAL::Assertion_exception' - what(): CGAL ERROR: assertion violation! - Expr: N.is_valid(0,0) - File: /usr/include/CGAL/convex_decomposition_3.h - Line: 113 - - This appears to have been a CGAL issue which was fixe in CGAL-3.9. -*/ - -minkowski() { - cube(20, center=true); - rotate([20, 30, 40]) - difference() { - cube(5, center=true); - cube([1, 1, 10], center=true); - } -} |