diff options
author | Marius Kintel <marius@kintel.net> | 2011-09-08 00:31:27 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-09-08 00:31:27 (GMT) |
commit | fab0f891b79c0c2cbc91120f7648af8a96c6669d (patch) | |
tree | d5639805ea0abdd3b104f12b80b523a388dfac90 /testdata/scad/features/include test6.scad | |
parent | 838f1fb8fcb527c5c9628b444f120058bba5479f (diff) |
Updated the include tests to provide geometry
Diffstat (limited to 'testdata/scad/features/include test6.scad')
-rw-r--r-- | testdata/scad/features/include test6.scad | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/testdata/scad/features/include test6.scad b/testdata/scad/features/include test6.scad index 7a79456..0d96b26 100644 --- a/testdata/scad/features/include test6.scad +++ b/testdata/scad/features/include test6.scad @@ -1,4 +1,7 @@ module test6() { - echo("included from include test6.scad"); + difference() { + cube(center=true); + cylinder(r=0.4, h=2, center=true); + } } |