diff options
author | Marius Kintel <marius@kintel.net> | 2013-12-30 06:23:22 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-12-30 06:23:22 (GMT) |
commit | 3cb440c6248fb432339ef384d1bee9cd25b053b8 (patch) | |
tree | a62fdb40f7e23affdad18ece9ed5cc9bc4417ea8 /testdata | |
parent | d5bf74c91c3c7bbcf45d0db38831d900cc5c0f0b (diff) |
Removed obsolete tests
Diffstat (limited to 'testdata')
-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); -} |