vote up 0 vote down star

I am new to the generic geometry library that is proposed for inclusion with boost:

http://geometrylibrary.geodan.nl/

I have two vectors vector<int> Xb, Yb that I am trying to create a polygon from. I am trying to get something along the lines of the following code snippet:

 polygon_2d P;

 vector<double>::const_iterator xi;
 vector<double>::const_iterator yi;

 for (xi=Xb.begin(), yi=Yb.begin(); xi!=Xb.end(); ++xi, ++yi)
  P.push_back (make<point_2d>(*xi, *yi));

The above code does not work, complaining that P does not have a push_back member function. How do I initialize the polygon from points that have coordinates vector<int> Xb,vector<int> Yb?

flag

1  
A quick note, the likely hood that specific library you mention will survive a review process is highly unlikely. Your best option today is to write a light-weight C++ wrapper for the Generic Polygon Clipper library, as none of the proposed submissions for 2D polygon operations come anywhere near the performance GPC provides. – Beh Tou Cheh Sep 17 at 20:12
Thanks for the suggestion,Beh. GPC seems like a nice library, however it seems to be missing a feature that is important for me - namely the ability to compute the area of a polygon. – Dzhelil Rufat Sep 22 at 23:59

1 Answer

vote up 2 vote down check
append(P, make<point_2d>(*xi, *yi));
link|flag
Thanks, this solves the above problem. However, now I am running into another one. Trying to intersect a polygon_2d with another polygon_2d returns an error. The examples only show how to do intersections between box_2d and polygon_2d. Are intersections between polygons possible? – Dzhelil Rufat Sep 17 at 20:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.