From 8d97fb3939cae92105f4d83e67cb2030a4256ec2 Mon Sep 17 00:00:00 2001 From: Marius Kintel Date: Sat, 26 Nov 2011 18:57:26 +0100 Subject: Temporarily fall back to deprecated module 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(); -- cgit v0.10.1