diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-05 09:38:48 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-05 09:38:48 (GMT) |
commit | f789f39f7518c16ceeecd08104a66e2774a7a469 (patch) | |
tree | a197985c09928d42703bf94f337d0107ce3d81c0 /examples | |
parent | dfd5a373905f98be1b5b65b01981d9f9b7ec56df (diff) |
Clifford Wolf:
Added polyeder primitive
git-svn-id: http://svn.clifford.at/openscad/trunk@94 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'examples')
-rw-r--r-- | examples/example011.scad | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/examples/example011.scad b/examples/example011.scad new file mode 100644 index 0000000..c11e65b --- /dev/null +++ b/examples/example011.scad @@ -0,0 +1,16 @@ +polyeder( + points = [ + [10 0 0], + [ 0 10 0], + [ -10 0 0], + [ 0 -10 0], + [ 0 0 10] + ], + triangles = [ + [0 1 2 3], + [4 1 0], + [4 2 1], + [4 3 2], + [4 0 3] + ] +); |