diff options
author | Marius Kintel <marius@kintel.net> | 2011-11-25 00:00:52 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-11-25 00:00:52 (GMT) |
commit | 70e0b93c1d76fb8a23f42796d5e24d044b6fdff2 (patch) | |
tree | e9a878be22cf796928aa7aca845bec362b835b68 /testdata | |
parent | e518d03e04014e28a0a822fd3494c07b9ab8194d (diff) |
Updated polygon test with double-specification of start vertex
Diffstat (limited to 'testdata')
-rw-r--r-- | testdata/scad/features/polygon-tests.scad | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testdata/scad/features/polygon-tests.scad b/testdata/scad/features/polygon-tests.scad index ab3a345..b4e92b6 100644 --- a/testdata/scad/features/polygon-tests.scad +++ b/testdata/scad/features/polygon-tests.scad @@ -13,5 +13,6 @@ translate([2,-2,0]) polygon([[0,0], [1,0], [0.8,0.5], [1,1], [0,1]]); points = [[0,0], [0.5,-0.2], [1,0], [1.2,0.5], [1,1], [0.5,1.2], [0,1], [-0.2,0.5]]; translate([-2,0,0]) polygon(points); translate([-2,-2,0]) polygon(points=points, paths=[[0,1,2,3], [4,5,6,7]]); +translate([2,-4,0]) polygon([[0,0], [1,0], [1,1], [0,0]]); // FIXME: convexity |