diff options
author | Marius Kintel <marius@kintel.net> | 2013-12-30 02:17:35 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-12-30 02:17:35 (GMT) |
commit | 267cb31e79816b1c68acd4026235e55225ba6fa7 (patch) | |
tree | 2726f8cd5dc52ca8c35991a44e13daa0c520196d /testdata/scad/bugs/minkowski-assert.scad | |
parent | 182625c5decbfe91d12242c5d69ec08b519fe2f4 (diff) |
Removed obsolete tests
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); - } -} |