diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-14 13:22:59 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2009-10-14 13:22:59 (GMT) |
commit | beaf3351eee8bc27cca814d106f4f20334a5b85d (patch) | |
tree | 17b19c30fc8db6823afb8af1eade35a876066b82 /examples/example012.scad | |
parent | 6a12327e2a07440dc9f2204a37abdbc10d8a5236 (diff) |
Clifford Wolf:
Added support for importing binary STL files
git-svn-id: http://svn.clifford.at/openscad/trunk@103 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'examples/example012.scad')
-rw-r--r-- | examples/example012.scad | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/example012.scad b/examples/example012.scad new file mode 100644 index 0000000..d77b391 --- /dev/null +++ b/examples/example012.scad @@ -0,0 +1,12 @@ + +// example012.stl is Mblock.stl, (c) 2009 Will Langford +// licensed under the Creative Commons - GNU GPL license. +// http://www.thingiverse.com/thing:753 + +difference() +{ + sphere(20); + + translate([ -2.92 0.5 +20 ]) rotate([180 0 180]) + import_stl("example012.stl", convexity = 5); +} |