diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-26 17:27:05 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-26 17:27:05 (GMT) |
commit | 22710f807679b64973005d43fba607459438162d (patch) | |
tree | 48ba9ad7d268653fb3c21da45b33b7dd36758e3a /example.scad | |
parent | 7b153c2092f74d58e86f08934760a6df490ac038 (diff) |
Clifford Wolf:
More wireframe shader improvements
git-svn-id: http://svn.clifford.at/openscad/trunk@26 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'example.scad')
-rw-r--r-- | example.scad | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/example.scad b/example.scad index b37f4a6..55fbd23 100644 --- a/example.scad +++ b/example.scad @@ -76,9 +76,12 @@ module test005() } } -// test005(); - -difference() { - cube(8, center = true); - sphere(5); +module test006() +{ + difference() { + cube(8, center = true); + sphere(5); + } } + +cylinder(h=5, r1=3, r2 = 10, center = true); |