We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60e7b1f commit b5a7037Copy full SHA for b5a7037
tools/view_model.cpp
@@ -183,6 +183,9 @@ int main(int argc, char **argv)
183
info_msg << "Model loaded successfully:" << std::endl;
184
info_msg << " " << n_vertices << " vertices" << std::endl;
185
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;
189
190
info_msg << std::endl;
191
info_msg << "Mouse:" << std::endl;
0 commit comments