diff options
author | Marius Kintel <marius@kintel.net> | 2014-01-02 22:07:34 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2014-01-02 22:07:34 (GMT) |
commit | 0044ecde206330ac1cd2857a83006e9860dc0229 (patch) | |
tree | 0a721b328213358745a953a7ee3e49744d939424 /testdata | |
parent | 1bf5f443793db69f846e4f44479c435dff017e84 (diff) |
Added testcase for #495
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/bugs/issue495.scad | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testdata/scad/bugs/issue495.scad b/testdata/scad/bugs/issue495.scad new file mode 100644 index 0000000..3343113 --- /dev/null +++ b/testdata/scad/bugs/issue495.scad @@ -0,0 +1,8 @@ +// The inner cube won't render correctly in OpenCSG mode as long as this bug is present +difference() { + render(convexity=2) difference() { + cube(20, center = true); + cube(10, center = true); + } + translate([0, 0, 15]) cube(30, center=true); +} |