Added test for issue exporting volume with a cavity - #495

issue406
Marius Kintel 2014-02-11 01:04:27 -05:00
parent 8d8518d128
commit ec52c4e713
1 changed files with 8 additions and 0 deletions

8
testdata/scad/bugs/issue495a.scad vendored Normal file
View File

@ -0,0 +1,8 @@
// Hollow cube.
// STL export is wrong (inner cube is positive instead of negative)
// This is fixed by applying and using the patch to CGAL containing
// convert_all_inner_shells_to_polyhedron()
difference() {
cube(20, center = true);
cube(10, center = true);
}