You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hm, that works for me. Here's a test code that I used:
TPPLPartition pp;
list<TPPLPoly> input;
list<TPPLPoly> output;
TPPLPoly p;
p.Init(4);
p[0].x = -1423; p[0].y = 479;
p[1].x = -1423; p[1].y = 419;
p[2].x = -1363; p[2].y = 419;
p[3].x = -1363; p[3].y = 479;
p.SetHole(false);
input.push_back(p);
p[0].x = -1403; p[0].y = 459;
p[1].x = -1383; p[1].y = 459;
p[2].x = -1383; p[2].y = 439;
p[3].x = -1403; p[3].y = 439;
p.SetHole(true);
input.push_back(p);
pp.ConvexPartition_HM(&input, &output);
Did you use the most recent version of the library? Did you make any changes to
it? Or use different vertex ordering in your code?
Original issue reported on code.google.com by
[email protected]
on 10 May 2013 at 5:36The text was updated successfully, but these errors were encountered: