added the prototypes for some missing methods

This commit is contained in:
Menelaos Karavelas 2004-02-09 00:36:27 +00:00
parent 511a966b82
commit 0bbc0b83db
1 changed files with 16 additions and 1 deletions

View File

@ -181,6 +181,17 @@ public:
}
}
Vertex_handle insert(const Point& p, Vertex_handle)
{
return insert(p);
}
Vertex_handle insert(const Point& p1, const Point& p2,
Vertex_handle)
{
return insert(p1, p2);
}
private:
Vertex_handle insert_point(const Point& p, int level);
void insert_point(const Point& p, int level,
@ -202,6 +213,11 @@ public:
Vertex_handle nearest_neighbor(const Point& p,
bool force_point = false) const;
Vertex_handle nearest_neighbor(const Point& p, Vertex_handle)
{
return nearest_neighbor(p);
}
private:
void nearest_neighbor(const Site& p,
Vertex_handle vnear[svd_hierarchy_2__maxlevel],
@ -310,7 +326,6 @@ clear()
}
}
template<class Gt, class P, class Tds>
inline
typename Segment_Voronoi_diagram_hierarchy_2<Gt,P,Tds>::Vertex_handle