Skip to content

Commit b5a7037

Browse files
(view_model) show min max size (#164)
1 parent 60e7b1f commit b5a7037

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tools/view_model.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,9 @@ int main(int argc, char **argv)
183183
info_msg << "Model loaded successfully:" << std::endl;
184184
info_msg << " " << n_vertices << " vertices" << std::endl;
185185
info_msg << " " << n_triangles << " triangles" << std::endl;
186+
info_msg << " " << "x: [" << p_min.x << " - " << p_max.x << "]" << std::endl;
187+
info_msg << " " << "y: [" << p_min.y << " - " << p_max.y << "]" << std::endl;
188+
info_msg << " " << "z: [" << p_min.z << " - " << p_max.z << "]" << std::endl;
186189

187190
info_msg << std::endl;
188191
info_msg << "Mouse:" << std::endl;

0 commit comments

Comments
 (0)