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