bug fix : typo in Cell_circulator& operator--()

This commit is contained in:
Monique Teillaud 1998-11-25 13:27:59 +00:00
parent b9173a9297
commit dca969665f
1 changed files with 2 additions and 2 deletions

View File

@ -102,8 +102,8 @@ public:
Cell_circulator& operator--()
{
CGAL_triangulation_precondition( (pos != NULL) ); // then prev != NULL too
int i = prev->index(_e.first->vertex(e.second));
int j = prev->index(_e.first->vertex(e.third));
int i = prev->index(_e.first->vertex(_e.second));
int j = prev->index(_e.first->vertex(_e.third));
int k = other(i,j);
Cell * tmp = prev;
Cell * n = prev->neighbor(k);