diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-26 18:41:48 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-26 18:41:48 (GMT) |
commit | c6a6ad46da7cb349422eefbec6bf37a55e9f8cc5 (patch) | |
tree | 672710710950952d9740ef545b2bf9176892469c /examples/example013.scad | |
parent | 8d97fb3939cae92105f4d83e67cb2030a4256ec2 (diff) |
Removed use of deprecated functionality from examples, with a few temporary exceptions
Diffstat (limited to 'examples/example013.scad')
-rw-r--r-- | examples/example013.scad | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/example013.scad b/examples/example013.scad index 7132b02..c17422f 100644 --- a/examples/example013.scad +++ b/examples/example013.scad @@ -1,12 +1,12 @@ intersection() { - linear_extrude(file = "example013.dxf", - height = 100, center = true, convexity= 3); + linear_extrude(height = 100, center = true, convexity= 3) + import(file = "example013.dxf"); rotate([0, 90, 0]) - linear_extrude(file = "example013.dxf", - height = 100, center = true, convexity= 3); + linear_extrude(height = 100, center = true, convexity= 3) + import(file = "example013.dxf"); rotate([90, 0, 0]) - linear_extrude(file = "example013.dxf", - height = 100, center = true, convexity= 3); + linear_extrude(height = 100, center = true, convexity= 3) + import(file = "example013.dxf"); }
\ No newline at end of file |