diff options
Diffstat (limited to 'examples/example007.scad')
-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(); |