02-05-2014, 11:12 AM
Hi,
Why triangulating this polygon throws an exception? Its shape seems to be valid.
Why triangulating this polygon throws an exception? Its shape seems to be valid.
Code:
List<Point> points = new List<Point>()
{
new Point(6,2),
new Point(3,4),
new Point(0,2),
new Point(1,0),
new Point(3,2),
new Point(5,0)
};
Ab3d.Utilities.Triangulator.Triangulate(points);
