diff options
author | Marius Kintel <marius@kintel.net> | 2014-01-16 00:24:38 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2014-01-16 00:24:38 (GMT) |
commit | 5c57ed41e7136cc9c2efcb2353a2394fc442d718 (patch) | |
tree | efe1f88ddf1f206247dfebd90366f51c5b00d4d1 /testdata | |
parent | 7af692282911931279a330308d1e123ed9d1d1fe (diff) |
Added test for empty geometry
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/misc/empty-shape-tests.scad | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/testdata/scad/misc/empty-shape-tests.scad b/testdata/scad/misc/empty-shape-tests.scad new file mode 100644 index 0000000..2b1a98c --- /dev/null +++ b/testdata/scad/misc/empty-shape-tests.scad @@ -0,0 +1,28 @@ +linear_extrude(h=1) { + square(0); + circle(0); + polygon(); + import(); +} + +cube(0); +sphere(0); +cylinder(0); +polyhedron(); +import(); +surface(); +rotate_extrude(); +linear_extrude(); +translate(); +color(); +hull(); +minkowski(); +union(); +difference(); +intersection(); +render(); +projection(); +assign(); +if(1) { } +intersection_for(); +for(); |