Add the following function, which is documented:

Face_status face_status (const Cell_handle c, const int i, const int j) const
This commit is contained in:
Laurent Rineau 2009-02-07 13:30:04 +00:00
parent d5e0734193
commit 1183905c3d
1 changed files with 4 additions and 0 deletions

View File

@ -342,6 +342,10 @@ public:
return face_status(e.first->vertex(e.second), e.first->vertex(e.third)); return face_status(e.first->vertex(e.second), e.first->vertex(e.third));
} }
Face_status face_status (const Cell_handle c, const int i, const int j) const {
return face_status(c->vertex(i), c->vertex(j));
}
Face_status face_status (const Vertex_handle& va, Face_status face_status (const Vertex_handle& va,
const Vertex_handle& vb) const const Vertex_handle& vb) const
{ {