mirror of https://github.com/CGAL/cgal
Global function for make_xy_monotone
This commit is contained in:
parent
e38abaeb36
commit
1bfd02a7f2
|
|
@ -149,6 +149,13 @@ make_x_monotone(const Circular_arc_2<CK> &A, OutputIterator it)
|
||||||
return CK().make_x_monotone_2_object()(A, it);
|
return CK().make_x_monotone_2_object()(A, it);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template < class CK, class OutputIterator >
|
||||||
|
OutputIterator
|
||||||
|
make_xy_monotone(const Circular_arc_2<CK> &A, OutputIterator it)
|
||||||
|
{
|
||||||
|
return CK().make_xy_monotone_2_object()(A, it);
|
||||||
|
}
|
||||||
|
|
||||||
CGAL_END_NAMESPACE
|
CGAL_END_NAMESPACE
|
||||||
|
|
||||||
#endif // CGAL_CIRCULAR_KERNEL_GLOBAL_FUNCTIONS_ON_CIRCULAR_ARCS_2_H
|
#endif // CGAL_CIRCULAR_KERNEL_GLOBAL_FUNCTIONS_ON_CIRCULAR_ARCS_2_H
|
||||||
|
|
|
||||||
|
|
@ -103,6 +103,13 @@ make_x_monotone(const Line_arc_2<CK> &A, OutputIterator it)
|
||||||
return CK().make_x_monotone_2_object()(A, it);
|
return CK().make_x_monotone_2_object()(A, it);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
template < class CK, class OutputIterator >
|
||||||
|
OutputIterator
|
||||||
|
make_xy_monotone(const Line_arc_2<CK> &A, OutputIterator it)
|
||||||
|
{
|
||||||
|
return CK().make_xy_monotone_2_object()(A, it);
|
||||||
|
}
|
||||||
|
|
||||||
CGAL_END_NAMESPACE
|
CGAL_END_NAMESPACE
|
||||||
|
|
||||||
#endif // CGAL_CIRCULAR_KERNEL_GLOBAL_FUNCTIONS_ON_LINE_ARCS_2_H
|
#endif // CGAL_CIRCULAR_KERNEL_GLOBAL_FUNCTIONS_ON_LINE_ARCS_2_H
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue