mirror of https://github.com/CGAL/cgal
correct bug:
could not call points_begin() with regular_triangulation
This commit is contained in:
parent
428d48f6f7
commit
29acae75e0
|
|
@ -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;}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue