I have two arcs defined with the following information:
Origin, Radius, StartPoint, EndPoint, StartAngle & EndAngle
The angles are signed so you know which direction around the circle the arc goes.
An arc inside an arc segment does not count as an overlap as the perimeters don't touch:
Is it possible to test if the two arcs intersect along their perimeters (I am not looking to test if the area of the circle segments overlap).
My current idea is using an algorithm to interpolate along the arcs as straight line segments and do line-line intersection tests for each line segment - which can be slow depending on how many line segments i use, but I am wondering if there is a more pure mathematical approach ?