I just finished reading a book called Algorithms and Applications of Computational Geometry. The algorithm presented in this book is very useful for my future work.
But the algorithm in this book only deals with straight segments. what I want to know is the same algorithm that can deal with both straight and conical arcs.
Such as finding the intersection of mixed line segments and conical arcs; offset polygon with conical arcs; find the convex hull of a concave polygon with a conical arc edge ...
Third-party libraries such as CGAL can deal with such problems, but I want to know the details of the algorithm. What book or materials should I refer to?
source
share