I have 2 convex polygons (2d) and I would like to check if the 2 polygons intersect. In fact, I will move and rotate the polygons many times, so I can also do some precomputations to obtain a fast answer to this problem.
I am looking for a low complexity algorithm.
I know that it is possible to check that a point lie in a convex polygon in O(log(n)), and I was wondering if I can do some kind of dichotomy around the points of the other polygon to obtain the result. If there any existing algorithms / papers on this topic ?