// ============================================================================ // // Copyright (c) 2000 The CGAL Consortium // // This software and related documentation is part of an INTERNAL release // of the Computational Geometry Algorithms Library (CGAL). It is not // intended for general use. // // ---------------------------------------------------------------------------- // // release : $CGAL_Revision $ // release_date : $CGAL_Date $ // // file : include/CGAL/partition_2.h // package : $CGAL_Package: Partition_2 $ // maintainer : Susan Hert // chapter : Planar Polygon Partitioning // // revision : $Revision$ // revision_date : $Date$ // // author(s) : Susan Hert // // coordinator : MPI (Susan Hert ) // // implementation: Polygon partitioning functions // ============================================================================ #ifndef CGAL_PARTITION_H #define CGAL_PARTITION_H #include #include #include #include namespace CGAL { template inline OutputIterator greene_approx_convex_partition_2(InputIterator first, InputIterator beyond, OutputIterator result, const Traits& traits) { return partition_greene_approx_convex_2(first, beyond, result, traits); } template inline OutputIterator greene_approx_convex_partition_2(InputIterator first, InputIterator beyond, OutputIterator result) { return partition_greene_approx_convex_2(first, beyond, result); } template inline OutputIterator optimal_convex_partition_2(InputIterator first, InputIterator beyond, OutputIterator result, const Traits& traits) { return partition_optimal_convex_2(first, beyond, result, traits); } template inline OutputIterator optimal_convex_partition_2(InputIterator first, InputIterator beyond, OutputIterator result) { return partition_optimal_convex_2(first, beyond, result); } template inline OutputIterator approx_convex_partition_2(InputIterator first, InputIterator beyond, OutputIterator result, const Traits& traits) { return partition_approx_convex_2(first, beyond, result, traits); } template inline OutputIterator approx_convex_partition_2(InputIterator first, InputIterator beyond, OutputIterator result) { return partition_approx_convex_2(first, beyond, result); } template inline OutputIterator y_monotone_partition_2(InputIterator first, InputIterator beyond, OutputIterator result, const Traits& traits) { return partition_y_monotone_2(first, beyond, result, traits); } template inline OutputIterator y_monotone_partition_2(InputIterator first, InputIterator beyond, OutputIterator result) { return partition_y_monotone_2(first, beyond, result); } } #endif // CGAL_PARTITION_H