mirror of https://github.com/CGAL/cgal
Document constructor
This commit is contained in:
parent
4395927c7d
commit
aeecb85263
|
|
@ -43,6 +43,10 @@ class Neighbor_search
|
|||
using Polylines = std::vector<Polyline>;
|
||||
|
||||
public:
|
||||
/*!
|
||||
* constructs a neighbor search data structure for `polylines`
|
||||
* \tparam PolylineRange must be a model of `RandomAccessRange` with value type `PointRange`
|
||||
*/
|
||||
template <typename PolylineRange>
|
||||
Neighbor_search(const PolylineRange& polylines)
|
||||
: curves(polylines.begin(), polylines.end())
|
||||
|
|
|
|||
Loading…
Reference in New Issue