mirror of https://github.com/CGAL/cgal
improve verbosity in the end
This commit is contained in:
parent
f85ae5783a
commit
9d91c3f304
|
|
@ -368,8 +368,18 @@ public:
|
|||
CGAL::Tetrahedral_remeshing::debug::dump_c3t3(m_c3t3, "99-postprocess");
|
||||
#endif
|
||||
#ifdef CGAL_TETRAHEDRAL_REMESHING_VERBOSE
|
||||
std::cout << "(peeling removed " << nb_slivers_peel << " slivers)" << std::endl;
|
||||
std::cout << "done." << std::endl;
|
||||
mindh = 180.;
|
||||
for (Cell_handle cit : tr().finite_cell_handles())
|
||||
{
|
||||
if (m_c3t3.is_in_complex(cit))
|
||||
{
|
||||
const double dh = min_dihedral_angle(tr(), cit);
|
||||
mindh = (std::min)(dh, mindh);
|
||||
}
|
||||
}
|
||||
std::cout << "Peeling done (removed " << nb_slivers_peel << " slivers, "
|
||||
<< "min dihedral angle = " << mindh << ")." << std::endl;
|
||||
|
||||
#endif
|
||||
return nb_slivers_peel;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue