mirror of https://github.com/CGAL/cgal
Fixed inaccessible functions
This commit is contained in:
parent
983dca6158
commit
4f699efd8b
|
|
@ -1773,10 +1773,10 @@ Alpha_shape_2<Dt,EACT>::Output ()
|
||||||
// if we used Edelsbrunner and Muecke's definition
|
// if we used Edelsbrunner and Muecke's definition
|
||||||
// regular means incident to a higher-dimensional face
|
// regular means incident to a higher-dimensional face
|
||||||
// thus we would write to many vertices
|
// thus we would write to many vertices
|
||||||
L.push_back((segment((*edge_alpha_it).second.first,
|
L.push_back((this->segment((*edge_alpha_it).second.first,
|
||||||
(*edge_alpha_it).second.second))
|
(*edge_alpha_it).second.second))
|
||||||
.source());
|
.source());
|
||||||
L.push_back((segment((*edge_alpha_it).second.first,
|
L.push_back((this->segment((*edge_alpha_it).second.first,
|
||||||
(*edge_alpha_it).second.second))
|
(*edge_alpha_it).second.second))
|
||||||
.target());
|
.target());
|
||||||
}
|
}
|
||||||
|
|
@ -1813,10 +1813,10 @@ Alpha_shape_2<Dt,EACT>::Output ()
|
||||||
CGAL_triangulation_assertion((classify((*edge_alpha_it).second.first,
|
CGAL_triangulation_assertion((classify((*edge_alpha_it).second.first,
|
||||||
(*edge_alpha_it).second.second) ==
|
(*edge_alpha_it).second.second) ==
|
||||||
REGULAR));
|
REGULAR));
|
||||||
L.push_back((segment((*edge_alpha_it).second.first,
|
L.push_back((this->segment((*edge_alpha_it).second.first,
|
||||||
(*edge_alpha_it).second.second))
|
(*edge_alpha_it).second.second))
|
||||||
.source());
|
.source());
|
||||||
L.push_back((segment((*edge_alpha_it).second.first,
|
L.push_back((this->segment((*edge_alpha_it).second.first,
|
||||||
(*edge_alpha_it).second.second))
|
(*edge_alpha_it).second.second))
|
||||||
.target());
|
.target());
|
||||||
}
|
}
|
||||||
|
|
@ -1837,10 +1837,10 @@ Alpha_shape_2<Dt,EACT>::Output ()
|
||||||
(classify((*edge_alpha_it).second.first,
|
(classify((*edge_alpha_it).second.first,
|
||||||
(*edge_alpha_it).second.second) ==
|
(*edge_alpha_it).second.second) ==
|
||||||
SINGULAR)));
|
SINGULAR)));
|
||||||
L.push_back((segment((*edge_alpha_it).second.first,
|
L.push_back((this->segment((*edge_alpha_it).second.first,
|
||||||
(*edge_alpha_it).second.second))
|
(*edge_alpha_it).second.second))
|
||||||
.source());
|
.source());
|
||||||
L.push_back((segment((*edge_alpha_it).second.first,
|
L.push_back((this->segment((*edge_alpha_it).second.first,
|
||||||
(*edge_alpha_it).second.second))
|
(*edge_alpha_it).second.second))
|
||||||
.target());
|
.target());
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue