Skip to content

Commit

Permalink
(view_model) show min max size (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthijsBurgh authored Aug 8, 2023
1 parent 60e7b1f commit b5a7037
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/view_model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,9 @@ int main(int argc, char **argv)
info_msg << "Model loaded successfully:" << std::endl;
info_msg << " " << n_vertices << " vertices" << std::endl;
info_msg << " " << n_triangles << " triangles" << std::endl;
info_msg << " " << "x: [" << p_min.x << " - " << p_max.x << "]" << std::endl;
info_msg << " " << "y: [" << p_min.y << " - " << p_max.y << "]" << std::endl;
info_msg << " " << "z: [" << p_min.z << " - " << p_max.z << "]" << std::endl;

info_msg << std::endl;
info_msg << "Mouse:" << std::endl;
Expand Down

0 comments on commit b5a7037

Please sign in to comment.