CGAL 6.0.1 - 2D Arrangements
|
#include <CGAL/Arr_polycurve_traits_2.h>
Subdivide a given subcurve into \(x\)-monotone subcurves and isolated points, and insert them into an output container.
An object in the output container is represented by a discriminated union container that holds either a point or an \(x\)-monotone curve.
Public Member Functions | |
template<typename OutputIterator > | |
OutputIterator | operator() (const Curve_2 &cv, OutputIterator oi) const |
performs the subdivision. | |
OutputIterator CGAL::Arr_polycurve_traits_2< SubcurveTraits_2 >::Make_x_monotone_2::operator() | ( | const Curve_2 & | cv, |
OutputIterator | oi | ||
) | const |
performs the subdivision.
cv | the subcurve. |
oi | The output iterator that points at the output container. |
cv
is not empty, then it must be continuous and well-oriented. oi
must yield a polymorphic object of type std::variant<
Point_2
, X_monotone_curve_2>
.