diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-23 11:28:35 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-23 11:28:35 (GMT) |
commit | 0fcdcb6bd6117e8e8ccaff15b0a083c2f76266a6 (patch) | |
tree | 3935db3fda7426d1b7180c8fc15f2069301aee76 /example.scad | |
parent | 9271046a02c5e8b62a9ed92e914ab6cf30938fc7 (diff) |
Clifford Wolf:
Added cylinder primitive
git-svn-id: http://svn.clifford.at/openscad/trunk@12 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'example.scad')
-rw-r--r-- | example.scad | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/example.scad b/example.scad index 9f21ea7..b74c29c 100644 --- a/example.scad +++ b/example.scad @@ -29,5 +29,11 @@ module test002() } } -test002(); +module test003() +{ + cylinder(h = 5, r1 = 3, r2 = 1, center = true); + // cylinder(h = 7, r1 = 1, r2 = 5, center = true); +} + +test003(); |