summaryrefslogtreecommitdiff
path: root/examples/example003.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/example003.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/example003.scad')
-rw-r--r--examples/example003.scad14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/example003.scad b/examples/example003.scad
index 2add654..531b3b4 100644
--- a/examples/example003.scad
+++ b/examples/example003.scad
@@ -3,15 +3,15 @@ module example003()
{
difference() {
union() {
- cube([30 30 30], center = true);
- cube([40 15 15], center = true);
- cube([15 40 15], center = true);
- cube([15 15 40], center = true);
+ cube([30, 30, 30], center = true);
+ cube([40, 15, 15], center = true);
+ cube([15, 40, 15], center = true);
+ cube([15, 15, 40], center = true);
}
union() {
- cube([50 10 10], center = true);
- cube([10 50 10], center = true);
- cube([10 10 50], center = true);
+ cube([50, 10, 10], center = true);
+ cube([10, 50, 10], center = true);
+ cube([10, 10, 50], center = true);
}
}
}
contact: Jan Huwald // Impressum