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
I have a collection (10,000s) of 2d quadrilateral shapes/polygon
I have a collection (millions) of 2d points
I would like to know if this library is suitable for me quickly find (for each 2d point) which quadrilateral it intersects/bounds with or possibly no intersection at all.
If it is possible, which example or function call would you recommend I focus on to study deeper ?
The text was updated successfully, but these errors were encountered:
By quadrilateral, you mean a rectangle or any quadrilateral?
In any case, you should use an algorithm similar to findAllIntersections to do that efficiently. I guess you can represent points with boxes with zero height and width and try to use it as it is.
I have a collection (10,000s) of 2d quadrilateral shapes/polygon
I have a collection (millions) of 2d points
I would like to know if this library is suitable for me quickly find (for each 2d point) which quadrilateral it intersects/bounds with or possibly no intersection at all.
If it is possible, which example or function call would you recommend I focus on to study deeper ?
The text was updated successfully, but these errors were encountered: