adjust tjunc output to match the step orders (input/deformations -> delaunay -> retopo -> rotation -> splitting)

This commit is contained in:
Jonathan 2022-07-16 10:50:13 -04:00
parent acac6cb720
commit 577592ce45
1 changed files with 4 additions and 6 deletions

View File

@ -658,18 +658,16 @@ void TJunc(node_t *headnode)
if (stats.delaunay) {
logging::print (logging::flag::STAT, "{:5} faces delaunay triangulated\n", stats.delaunay);
}
if (stats.retopology) {
logging::print (logging::flag::STAT, "{:5} faces re-topologized\n", stats.retopology);
logging::print (logging::flag::STAT, "{:5} faces added by re-topology\n", stats.faceretopology);
}
if (stats.rotates) {
logging::print (logging::flag::STAT, "{:5} faces rotated\n", stats.rotates);
}
if (stats.norotates) {
logging::print (logging::flag::STAT, "{:5} faces unable to be rotated or re-topologized\n", stats.norotates);
}
if (stats.retopology) {
logging::print (logging::flag::STAT, "{:5} faces re-topologized\n", stats.retopology);
}
if (stats.faceretopology) {
logging::print (logging::flag::STAT, "{:5} faces added by re-topology\n", stats.faceretopology);
}
if (stats.faceoverflows) {
logging::print (logging::flag::STAT, "{:5} faces added by splitting large faces\n", stats.faceoverflows);
}