mirror of https://github.com/CGAL/cgal
fixed is_valid() default arguments
Face::Face_handle(ff) to Face_handle(ff) in one of the constructor
This commit is contained in:
parent
ca84193f17
commit
b969c869ee
|
|
@ -139,7 +139,7 @@ cw_permute()
|
|||
template <class Gt>
|
||||
inline bool
|
||||
Constrained_triangulation_face_base_2<Gt>::
|
||||
is_valid(bool verbose = false, int level = 0) const
|
||||
is_valid(bool verbose, int level) const
|
||||
{
|
||||
bool result = Fab::is_valid(verbose, level);
|
||||
CGAL_triangulation_assertion(result);
|
||||
|
|
|
|||
|
|
@ -134,7 +134,7 @@ public:
|
|||
template < class Gt, class Tds >
|
||||
bool
|
||||
Delaunay_triangulation_2<Gt,Tds>::
|
||||
is_valid(bool verbose = false, int level = 0) const
|
||||
is_valid(bool verbose, int level) const
|
||||
{
|
||||
bool result = Triangulation_2<Gt,Tds>::is_valid(verbose, level);
|
||||
|
||||
|
|
|
|||
|
|
@ -217,7 +217,7 @@ power_test(const Face_handle& f, int i,
|
|||
template < class Gt, class Tds >
|
||||
bool
|
||||
Regular_triangulation_2<Gt,Tds>::
|
||||
is_valid(bool verbose = false, int level = 0) const
|
||||
is_valid(bool verbose, int level) const
|
||||
{
|
||||
if (number_of_vertices() <= 1) return true;
|
||||
bool result = Triangulation_2<Gt,Tds>::is_valid(verbose, level);
|
||||
|
|
|
|||
|
|
@ -421,7 +421,7 @@ infinite_face() const
|
|||
template <class Gt, class Tds >
|
||||
bool
|
||||
Triangulation_2<Gt, Tds>::
|
||||
is_valid(bool verbose = false, int level = 0) const
|
||||
is_valid(bool verbose, int level) const
|
||||
{
|
||||
bool result = _tds.is_valid(verbose, level);
|
||||
if (dimension() <= 0 ||
|
||||
|
|
|
|||
|
|
@ -314,7 +314,7 @@ Triangulation_line_face_circulator_2(const Point& pp,
|
|||
const Point& qq,
|
||||
const Face_handle& ff,
|
||||
const Triangulation_2<Gt,Tds>* t)
|
||||
: Face::Face_handle(ff), _tr(t), s(undefined), p(pp), q(qq)
|
||||
: Face_handle(ff), _tr(t), s(undefined), p(pp), q(qq)
|
||||
//begin the walk at face ff which has to contain pp
|
||||
{
|
||||
CGAL_triangulation_precondition(_tr->is_infinite(ff) ||
|
||||
|
|
|
|||
Loading…
Reference in New Issue