diff options
author | Marius Kintel <marius@kintel.net> | 2014-02-11 06:33:06 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2014-02-11 06:33:06 (GMT) |
commit | dbaf1776d8b7408c8f918e661ac673db39ca4cf9 (patch) | |
tree | 4ecdd52edc8e1d2d14db4e4148eb803f7a34f71b /testdata/scad/bugs/issue495.scad | |
parent | 57ac24013e91252b846723428cd1aedb881b3f8a (diff) |
More comments to clarify #495
Diffstat (limited to 'testdata/scad/bugs/issue495.scad')
-rw-r--r-- | testdata/scad/bugs/issue495.scad | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testdata/scad/bugs/issue495.scad b/testdata/scad/bugs/issue495.scad index 3343113..981bedf 100644 --- a/testdata/scad/bugs/issue495.scad +++ b/testdata/scad/bugs/issue495.scad @@ -1,4 +1,8 @@ // The inner cube won't render correctly in OpenCSG mode as long as this bug is present +// Note: This causes a different bug in unstable: +// If we render a preview first, the render() node will be cached as a PolySet. This will +// cause the same problems as in issue495.scad. If we clear cache and render using CGAL, +// it doesn't trigger the bug since we stay in CGAL all the time difference() { render(convexity=2) difference() { cube(20, center = true); |