diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-21 12:43:52 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-06-21 12:43:52 (GMT) |
commit | 1f08d77f548ed12186523e8e47f62441730ef985 (patch) | |
tree | b9190fb4773899404c7f51692a9478ab06914aef /example.scad | |
parent | e24a87b8a37b8f71be30d99251908a5d80bb8bc7 (diff) |
Clifford Wolf:
CSG Evaluation now functional
git-svn-id: http://svn.clifford.at/openscad/trunk@7 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'example.scad')
-rw-r--r-- | example.scad | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example.scad b/example.scad index 7a80a5d..8a1fad4 100644 --- a/example.scad +++ b/example.scad @@ -24,8 +24,8 @@ module test001() module test002() { difference() { - cube(1); - trans([0.5, 0.5, 0.5]) cube(1); + cube([2 2 0.5]); + cube([0.5 0.5 2]); } } |