From the code:
public Polygon( PolygonPoint p1, PolygonPoint p2, PolygonPoint p3 )
{
p1._next = p2;
p2._next = p3;
p3._next = p1;
p1._previous = p3;
p2._previous = p1;
p3._previous = p2;
}
This constructor is not adding the points p1, p2 and p3 to the points
collection, so if you use the polygon later it throws an ArrayOutOfBounds
because _points is empty.
Original issue reported on code.google.com by ariel.co...@gmail.com on 29 Aug 2011 at 5:58
Original issue reported on code.google.com by
ariel.co...@gmail.com
on 29 Aug 2011 at 5:58