Removed hiding-related functions from Triangulation_cell_base_3

Triangulation_cell_base_3 cannot be used anymore as a cell base of a regular
triangulation and thus there is no point keeping these functions.

People wishing to disable caching of hidden points in regular triangulations
should use the new policy, see commit b92528171c)
This commit is contained in:
Mael Rouxel-Labbé 2017-04-27 11:50:54 +02:00
parent eb18d7c007
commit 6b8f05e08c
1 changed files with 0 additions and 4 deletions

View File

@ -66,10 +66,6 @@ public:
Cell_handle n2, Cell_handle n3)
: Cb(v0, v1, v2, v3, n0, n1, n2, n3) {}
Point_iterator hidden_points_begin() const { return hidden_points_end(); }
Point_iterator hidden_points_end() const { return NULL; }
void hide_point (const Point &) const { }
// note the circumcenter() function is not part of the concept TriangulationCellBase_3
// it is requested only by DelaunayTriangulartionCellBase_3
// we keep it here for backward compatibility