diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-07-14 21:47:32 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-07-14 21:47:32 (GMT) |
commit | cc3291a4f1def85273e0e1cc6e43bb0079965946 (patch) | |
tree | 03ff099c015e6611a45e70318069026bbbff6115 /examples/example004.scad | |
parent | f950feace3beaeec9bd5a6d6e65f7790bd80a9d8 (diff) |
Clifford Wolf:
Added convexity handling
Split up example.scad file to examples/*
git-svn-id: http://svn.clifford.at/openscad/trunk@56 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'examples/example004.scad')
-rw-r--r-- | examples/example004.scad | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/example004.scad b/examples/example004.scad new file mode 100644 index 0000000..9cfc4f6 --- /dev/null +++ b/examples/example004.scad @@ -0,0 +1,11 @@ + +module example004() +{ + difference() { + cube(30, center = true); + sphere(20); + } +} + +example004(); + |