diff options
Diffstat (limited to 'testdata/scad/bugs/bbox-transform-bug.scad')
-rw-r--r-- | testdata/scad/bugs/bbox-transform-bug.scad | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/testdata/scad/bugs/bbox-transform-bug.scad b/testdata/scad/bugs/bbox-transform-bug.scad deleted file mode 100644 index ccd2eab..0000000 --- a/testdata/scad/bugs/bbox-transform-bug.scad +++ /dev/null @@ -1,9 +0,0 @@ -// -// Bug description: The intersection results in an empty object. -// Cause: The rotated bounding box is wrongly calculated, yielding a -// box which don't overlap with the bounding box of the second object. -// -intersection() { - rotate(45) cube(10); - translate([3,2,0]) cube(10); -} |