diff options
author | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-08 03:31:06 (GMT) |
---|---|---|
committer | clifford <clifford@b57f626f-c46c-0410-a088-ec61d464b74c> | 2010-01-08 03:31:06 (GMT) |
commit | 8df04678d04c65094b66da9abfe8443501fa62d2 (patch) | |
tree | cf45ce832f071690b68a19e18f52155893ce8ba5 /examples/example016.scad | |
parent | fb2333674148a2f28d313cd0218866f7daaf0d28 (diff) |
Clifford Wolf:
Use "file" and "layer" in import_* instead of "filename" and "layername"
(the old argument names are still supported for compatibility)
git-svn-id: http://svn.clifford.at/openscad/trunk@235 b57f626f-c46c-0410-a088-ec61d464b74c
Diffstat (limited to 'examples/example016.scad')
-rw-r--r-- | examples/example016.scad | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example016.scad b/examples/example016.scad index 0dfe50b..d75fafb 100644 --- a/examples/example016.scad +++ b/examples/example016.scad @@ -21,7 +21,7 @@ module blk2() { module chop() { translate([ -14, 0, 0 ]) - import_stl(filename = "example016.stl", convexity = 12); + import_stl(file = "example016.stl", convexity = 12); } difference() { |