lines put into debug out

This commit is contained in:
Eric Berberich 2008-08-03 22:48:08 +00:00
parent 16486bc4cb
commit 399feec073
1 changed files with 4 additions and 1 deletions

View File

@ -477,6 +477,7 @@ locate_around_boundary_vertex (Vertex *v,
// already incident to v.
CGAL_assertion(!eq_curr && !eq_next);
#if CGAL_ARR_TOPOLOGY_TRAITS_VERBOSE
std::cout << "=========================================="
<< std::endl;
std::cout << "searchloop: " << std::endl;
@ -493,6 +494,7 @@ locate_around_boundary_vertex (Vertex *v,
next->outer_ccb()->face()) << std::endl;
std::cout << "******************************************" << std::endl;
#endif
// Move to the next pair of incident halfedges.
curr = next;
@ -503,12 +505,13 @@ locate_around_boundary_vertex (Vertex *v,
CGAL_assertion (curr != first);
}
#if CGAL_ARR_TOPOLOGY_TRAITS_VERBOSE
std::cout << "return curr: " << curr->curve() << std::endl;
std::cout << "dir: " << curr->direction() << std::endl;
std::cout << "face: " << (curr->is_on_inner_ccb() ?
curr->inner_ccb()->face() :
curr->outer_ccb()->face()) << std::endl;
#endif
return curr;
}