diff options
author | Don Bright <hugh.m.bright@gmail.com> | 2011-11-13 16:40:20 (GMT) |
---|---|---|
committer | Don Bright <hugh.m.bright@gmail.com> | 2011-11-13 16:40:20 (GMT) |
commit | 1f9ce62573b65715e7b134ad4d8c8079fc28aa44 (patch) | |
tree | 40ac192b4d368cccc12e7b4e36c3dc7da5fba72f /testdata/scad/misc/dxf-export.scad | |
parent | 3eb466b5a9dcb7507045898efc7ad52226f54782 (diff) | |
parent | 2cfcdf557d7742422965035a64ef617ac043a429 (diff) |
Merge branch 'master' into cakebaby
Diffstat (limited to 'testdata/scad/misc/dxf-export.scad')
-rw-r--r-- | testdata/scad/misc/dxf-export.scad | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testdata/scad/misc/dxf-export.scad b/testdata/scad/misc/dxf-export.scad new file mode 100644 index 0000000..7f4b8cb --- /dev/null +++ b/testdata/scad/misc/dxf-export.scad @@ -0,0 +1,12 @@ +circle(r=5); + +translate([15,0,0]) square(size=[10,10], center=true); + +translate([30,0,0]) polygon(points=[[-5,-5],[5,-5],[0,5]], paths=[[0,1,2]]); + +translate([0,-15,0]) { + difference() { + circle(r=5); + translate([0,-6,0]) square([12,12], center=true); + } +}
\ No newline at end of file |