Global function for make_xy_monotone

This commit is contained in:
Pedro Machado Manhaes de Castro 2008-09-30 13:11:33 +00:00
parent e38abaeb36
commit 1bfd02a7f2
2 changed files with 14 additions and 0 deletions

View File

@ -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

View File

@ -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