summaryrefslogtreecommitdiff
path: root/examples/example011.scad
diff options
context:
space:
mode:
authorclifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c>2009-10-19 18:27:47 (GMT)
committerclifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c>2009-10-19 18:27:47 (GMT)
commit05b2eb1b90620025ba9242477b0df688745dd0db (patch)
treecfa890ef8e4bb5182ba988cf817c482e2fc639e1 /examples/example011.scad
parent7c998717209c4ea3cd8edf329baa3e5040d15266 (diff)
Clifford Wolf:
Fixed scalar subtraction Fixed handling of -/+ scalar prefix Fixed vector handling [0 1 2] doesn't work anymore now git-svn-id: http://svn.clifford.at/openscad/trunk@109 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'examples/example011.scad')
-rw-r--r--examples/example011.scad20
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/example011.scad b/examples/example011.scad
index c11e65b..f35af05 100644
--- a/examples/example011.scad
+++ b/examples/example011.scad
@@ -1,16 +1,16 @@
polyeder(
points = [
- [10 0 0],
- [ 0 10 0],
- [ -10 0 0],
- [ 0 -10 0],
- [ 0 0 10]
+ [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]
+ [0, 1, 2, 3],
+ [4, 1, 0],
+ [4, 2, 1],
+ [4, 3, 2],
+ [4, 0, 3]
]
);
contact: Jan Huwald // Impressum