1

What is the best method to check if two concave polygons overlap?

bool IsIntersection(Polygon poly1, Polygon poly2) {
    // return true / false
}
alexm92
  • 386
  • 3
  • 15

1 Answers1

0

I found my solution here. It's based on segment intersection.

http://www.geeksforgeeks.org/check-if-two-given-line-segments-intersect/

alexm92
  • 386
  • 3
  • 15