diff options
author | Marius Kintel <marius@kintel.net> | 2013-12-31 06:20:15 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-12-31 06:20:15 (GMT) |
commit | 46a9af8594b4ce16d4ca55ebf59e2fd7a847081c (patch) | |
tree | 08ec4f2d604add1f302094a37935ea22a638c497 /testdata | |
parent | 38b8e6961e6af2ef9fd5002b80ab6a03478d4d61 (diff) |
Added testcase for #585
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/bugs/issue585.scad | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testdata/scad/bugs/issue585.scad b/testdata/scad/bugs/issue585.scad new file mode 100644 index 0000000..f89529d --- /dev/null +++ b/testdata/scad/bugs/issue585.scad @@ -0,0 +1,5 @@ +// Somehow the 2D union/tessellation algorithm doesn't support touching polygons +// Changing translate([-10,-10,0]) to translate([-9.99,-9.99,0]) works + +square([10,10]); +translate([-10,-10,0]) square([10,10]); |