complete verbosity for this parameter

This commit is contained in:
Jane Tournois 2016-06-14 12:52:30 +02:00 committed by Sébastien Loriot
parent 80a4d71fcb
commit ef5b1847ea
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ Meshing_thread* cgal_code_mesh_3(const Polyhedron* pMesh,
std::cerr << "Meshing file \"" << qPrintable(filename) << "\"\n";
std::cerr << " angle: " << facet_angle << std::endl
<< " edge size bound: " << edge_size << std::endl
<< " facets size bound: " << facet_sizing << std::endl
<< " approximation bound: " << facet_approx << std::endl
<< " tetrahedra size bound: " << tet_sizing << std::endl;

View File

@ -115,6 +115,7 @@ Mesh_parameters::
log() const
{
return QStringList()
<< QString("edge max size: %1").arg(edge_sizing)
<< QString("facet min angle: %1").arg(facet_angle)
<< QString("facet max size: %1").arg(facet_sizing)
<< QString("facet approx error: %1").arg(facet_approx)