diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-07-25 19:45:38 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-07-25 19:45:38 (GMT) |
commit | 30682d9fb4fdb256fd5da4dcf337da920f5197f6 (patch) | |
tree | d26cbd28d7861d60d5e2ca9d563fc173e53133a1 /examples | |
parent | 1dde2be94e63be2f9ab48942da031277b116a948 (diff) |
Clifford Wolf:
Automatically change dir on file open or saveAs
git-svn-id: http://svn.clifford.at/openscad/trunk@79 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'examples')
-rw-r--r-- | examples/example010.scad | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/examples/example010.scad b/examples/example010.scad index 8e5be21..cb449e7 100644 --- a/examples/example010.scad +++ b/examples/example010.scad @@ -3,6 +3,12 @@ // d = (sin(1:0.2:10)' * cos(1:0.2:10)) * 10; // save("example010.dat", "d"); -surface(file = "example010.dat", - center = true, convexity = 5); - +intersection() +{ + surface(file = "example010.dat", + center = true, convexity = 5); + + rotate(45, [0 0 1]) + surface(file = "example010.dat", + center = true, convexity = 5); +} |