correct bug:

could not call points_begin() with regular_triangulation
This commit is contained in:
Sébastien Loriot 2010-06-14 13:49:28 +00:00
parent 428d48f6f7
commit 29acae75e0
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public:
bool is_hidden() { return _hidden ;} bool is_hidden() { return _hidden ;}
void set_point(const Weighted_point & p) { _p = p; } void set_point(const Weighted_point & p) { _p = p; }
const Weighted_point& point() const { return _p; } const Weighted_point& point() const { return _p; }
//Weighted_point& point() const { return _p; } Weighted_point& point() { return _p; }
bool is_valid(bool /* verbose */ = false, int /* level */ = 0) const bool is_valid(bool /* verbose */ = false, int /* level */ = 0) const
{return true;} {return true;}
}; };