diff options
author | Giles Bathgate <gilesbathgate@gmail.com> | 2011-04-09 16:52:12 (GMT) |
---|---|---|
committer | Giles Bathgate <gilesbathgate@gmail.com> | 2011-04-09 16:52:12 (GMT) |
commit | 5ef540054cc4a548a78eb78318e527f0e283ece8 (patch) | |
tree | 393a58dbd259ef87bf2cb7ac541fd7f3bd6326d8 | |
parent | 9cc441025cda17a494259b1ae2cafc5b48c14a12 (diff) |
Added test script for convex hull.
-rw-r--r-- | testdata/scad/convex_hull.scad | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/testdata/scad/convex_hull.scad b/testdata/scad/convex_hull.scad new file mode 100644 index 0000000..7db6817 --- /dev/null +++ b/testdata/scad/convex_hull.scad @@ -0,0 +1,8 @@ +hull() { + union() { + translate([15,10,0]) + circle(10); + circle(10); + } + square(2); +} |