diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-26 10:56:50 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-26 10:56:50 (GMT) |
commit | cdc62b4f286ae24d162d940e09faafc75628c7e4 (patch) | |
tree | b6269cc570497bf4d543fd17ccf76a0854d4cdba /example.scad | |
parent | a05c91bcecb7bbf85c0e5d5a307708e69f8eb9c8 (diff) |
Clifford Wolf:
Sphere bugfix and OpenCSG progress
git-svn-id: http://svn.clifford.at/openscad/trunk@23 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'example.scad')
-rw-r--r-- | example.scad | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/example.scad b/example.scad index 0e844b2..b37f4a6 100644 --- a/example.scad +++ b/example.scad @@ -78,5 +78,7 @@ module test005() // test005(); -$fs_preview = 1; -sphere(5); +difference() { + cube(8, center = true); + sphere(5); +} |