I have 2 arcs on unit sphere in 3-dimensional space and I want to know do they intersects or not with using of CGAL. I know that i must use doIntersect function, but I don't understand how to define arks (which parameters I must transmit to :Circular_arc_point_3).
For example, i have 2 points in spherical coordinates:
phi = 0, psi = 0, r = 1
phi = 45, psi = 45, r = 1
(They define arc on unit sphere)
Which parameters I must set in:
Circular_arc_point_3 p = Circular_arc_point_3(?, ?, ?);