From 577592ce4518e36f1cb662d5f42fed71f0060fb0 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Sat, 16 Jul 2022 10:50:13 -0400 Subject: [PATCH] adjust tjunc output to match the step orders (input/deformations -> delaunay -> retopo -> rotation -> splitting) --- qbsp/tjunc.cc | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/qbsp/tjunc.cc b/qbsp/tjunc.cc index 479174c9..9382ceff 100644 --- a/qbsp/tjunc.cc +++ b/qbsp/tjunc.cc @@ -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); }