diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-11-27 04:21:38 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-11-27 04:21:38 (GMT) |
commit | 610ab20ddba6d07e9b6e0b7565a44913854e467b (patch) | |
tree | 81c75e9ce9b68490bc5a81293290b96bb49d9510 /examples/example013.scad | |
parent | 2376814f2c4dd6e34a765ca37275b136785b26fd (diff) | |
parent | 04c340b35d8809b595ebb3ce53b7a00313d00a9b (diff) |
Merge remote branch 'upstream/master' into cakebaby
Conflicts:
doc/testing.txt
tests/CMakeLists.txt
tests/system-gl.cc
tests/system-gl.h
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 18f1f04..c17422f 100644 --- a/examples/example013.scad +++ b/examples/example013.scad @@ -1,12 +1,12 @@ intersection() { - dxf_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]) - dxf_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]) - dxf_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 |