From 13b0d51b3ec11137cd11baea669e5f36da03677a Mon Sep 17 00:00:00 2001
From: Thomas Fischer <thomas.fischer@ufz.de>
Date: Mon, 18 Jul 2022 17:22:42 +0200
Subject: [PATCH] [A/Utils] Use AABB::getMinMaxPoints()

---
 Applications/Utils/FileConverter/GMSH2OGS.cpp    | 3 +--
 Applications/Utils/FileConverter/Mesh2Raster.cpp | 3 +--
 Applications/Utils/MeshEdit/checkMesh.cpp        | 3 +--
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/Applications/Utils/FileConverter/GMSH2OGS.cpp b/Applications/Utils/FileConverter/GMSH2OGS.cpp
index 0b40597a1ad..02150385a97 100644
--- a/Applications/Utils/FileConverter/GMSH2OGS.cpp
+++ b/Applications/Utils/FileConverter/GMSH2OGS.cpp
@@ -250,8 +250,7 @@ int main(int argc, char* argv[])
 
     // Geometric information
     const GeoLib::AABB aabb = MeshLib::MeshInformation::getBoundingBox(*mesh);
-    auto const minPt(aabb.getMinPoint());
-    auto const maxPt(aabb.getMaxPoint());
+    auto const [minPt, maxPt] = aabb.getMinMaxPoints();
     INFO("Node coordinates:");
     INFO("\tx [{:g}, {:g}] (extent {:g})", minPt[0], maxPt[0],
          maxPt[0] - minPt[0]);
diff --git a/Applications/Utils/FileConverter/Mesh2Raster.cpp b/Applications/Utils/FileConverter/Mesh2Raster.cpp
index 6964259dbb3..da49e9be625 100644
--- a/Applications/Utils/FileConverter/Mesh2Raster.cpp
+++ b/Applications/Utils/FileConverter/Mesh2Raster.cpp
@@ -83,8 +83,7 @@ int main(int argc, char* argv[])
 
     std::vector<MeshLib::Node*> const& nodes_vec(mesh->getNodes());
     GeoLib::AABB const bounding_box(nodes_vec.begin(), nodes_vec.end());
-    auto const& min(bounding_box.getMinPoint());
-    auto const& max(bounding_box.getMaxPoint());
+    auto const& [min, max] = bounding_box.getMinMaxPoints();
     auto const n_cols =
         static_cast<std::size_t>(std::ceil((max[0] - min[0]) / cellsize));
     auto const n_rows =
diff --git a/Applications/Utils/MeshEdit/checkMesh.cpp b/Applications/Utils/MeshEdit/checkMesh.cpp
index e63225f18a6..e84b2f5dca7 100644
--- a/Applications/Utils/MeshEdit/checkMesh.cpp
+++ b/Applications/Utils/MeshEdit/checkMesh.cpp
@@ -80,8 +80,7 @@ int main(int argc, char* argv[])
 
     // Geometric information
     const GeoLib::AABB aabb(MeshLib::MeshInformation::getBoundingBox(*mesh));
-    auto minPt(aabb.getMinPoint());
-    auto maxPt(aabb.getMaxPoint());
+    auto const [minPt, maxPt] = aabb.getMinMaxPoints();
     INFO("Node coordinates:");
     INFO("\tx [{:g}, {:g}] (extent {:g})", minPt[0], maxPt[0],
          maxPt[0] - minPt[0]);
-- 
GitLab