diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-11-25 20:47:54 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-11-25 20:47:54 (GMT) |
commit | 07acb6714e1c07531710b81b41dfd978bfce78d3 (patch) | |
tree | 097a8d039a8727c0bc65e419673160643b327946 /examples | |
parent | 14c9d3200ac21ab9fc8988289c355d6a5d219553 (diff) |
Clifford Wolf:
Added intersection_for()
git-svn-id: http://svn.clifford.at/openscad/trunk@138 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'examples')
-rw-r--r-- | examples/example014.scad | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/example014.scad b/examples/example014.scad new file mode 100644 index 0000000..b88fd92 --- /dev/null +++ b/examples/example014.scad @@ -0,0 +1,9 @@ + +intersection_for(i = [ + [0, 0, 0], + [10, 20, 300], + [200, 40, 57], + [20, 88, 57] + ]) + rotate(i) cube([100, 20, 20], center = true); + |