mirror of https://github.com/CGAL/cgal
70 lines
1.9 KiB
C++
70 lines
1.9 KiB
C++
// ======================================================================
|
|
//
|
|
// Copyright (c) 1997 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: CGAL-2.3-I-44 $
|
|
// release_date : $CGAL_Date: 2001/03/09 $
|
|
//
|
|
// file : include/CGAL/sweep_to_construct_planar_map.h
|
|
// package : arr (1.87)
|
|
// maintainer : Eyal Flato <flato@math.tau.ac.il>
|
|
// source :
|
|
// revision :
|
|
// revision_date :
|
|
// author(s) : Eti Ezra <estere@post.tau.ac.il>
|
|
//
|
|
//
|
|
// coordinator : Tel-Aviv University (Dan Halperin <halperin@math.tau.ac.il>)
|
|
//
|
|
// Chapter :
|
|
// ======================================================================
|
|
|
|
#ifndef SWEEP_TO_CONSTRUCT_PLANAR_MAP_H
|
|
#define SWEEP_TO_CONSTRUCT_PLANRA_MAP_H
|
|
|
|
#ifndef CGAL_BASIC_H
|
|
#include <CGAL/basic.h>
|
|
#endif
|
|
|
|
#ifndef CGAL_SWEEP_CURVES_TO_PLANAR_MAP_H
|
|
#include <CGAL/Sweep_curves_to_planar_map.h>
|
|
#endif
|
|
|
|
CGAL_BEGIN_NAMESPACE
|
|
|
|
template <class Curve_iterator, class PM>
|
|
void sweep_to_construct_planar_map(Curve_iterator curves_begin,
|
|
Curve_iterator curves_end,
|
|
PM &result)
|
|
{
|
|
Sweep_curves_to_planar_map<Curve_iterator, PM> sweep_line;
|
|
|
|
sweep_line.sweep_curves_to_planar_map(curves_begin, curves_end, result);
|
|
}
|
|
|
|
/*template <class Curve_iterator, class PM, class Notifier>
|
|
void sweep_curves_to_pm(Curve_iterator curves_begin,
|
|
Curve_iterator curves_end, PM &result, Notifier* notifier)
|
|
{
|
|
Sweep_line<Curve_iterator, PM, Notifier> sweep_line;
|
|
|
|
sweep_line.sweep_curves_to_pm(curves_begin, curves_end, result, notifier);
|
|
}*/
|
|
|
|
CGAL_END_NAMESPACE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|