diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-26 17:57:26 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-26 18:30:25 (GMT) |
commit | 8d97fb3939cae92105f4d83e67cb2030a4256ec2 (patch) | |
tree | 5b95e7f1c9bf0d40cd0a37225188ce2fd3e70783 | |
parent | e158384eb838dc8339743c3c327e1b210cb0968d (diff) |
Temporarily fall back to deprecated module
-rw-r--r-- | examples/example007.scad | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/examples/example007.scad b/examples/example007.scad index c1787f6..12d2dc2 100644 --- a/examples/example007.scad +++ b/examples/example007.scad @@ -19,8 +19,13 @@ module cutout() module clip() { difference() { - rotate_extrude(convexity = 3) - import(file = "example007.dxf", layer="dorn"); + // NB! We have to use the deprecated module here since the "dorn" + // layer contains an open polyline, which is not yet supported + // by the import() module. + dxf_rotate_extrude( + file = "example007.dxf", + layer="dorn", + convexity = 3); for (r = [0, 90]) rotate(r, [0, 0, 1]) cutout(); |