diff options
author | Marius Kintel <marius@kintel.net> | 2012-02-03 22:05:42 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-02-03 22:05:42 (GMT) |
commit | cb363df358a70a1f366085773d13a3875a1ceda5 (patch) | |
tree | d5f5ed75ab42c9253e92597229e193bea269dee4 /testdata/scad/bugs | |
parent | 7a4b75630f619dfd64618d3f1c24da859f9e4a13 (diff) |
Added test case and source code comments related to issue #80
Diffstat (limited to 'testdata/scad/bugs')
-rw-r--r-- | testdata/scad/bugs/projectioncrash.scad | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/testdata/scad/bugs/projectioncrash.scad b/testdata/scad/bugs/projectioncrash.scad new file mode 100644 index 0000000..532ef8d --- /dev/null +++ b/testdata/scad/bugs/projectioncrash.scad @@ -0,0 +1,5 @@ +// This causes OpenSCAD to crash. See source code comments: +// PolySetCGALEvaluator::evaluatePolySet(const ProjectionNode &node) +// Se also https://github.com/openscad/openscad/issues/80 + +projection(cut=true) translate([0,0,-4.999999]) cube(10, center=true); |