diff options
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); |