Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacarniato committed Oct 25, 2023
1 parent 1038d4e commit 1fd4f5b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions libs/MeshKernel/src/Mesh2D.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2026,9 +2026,6 @@ meshkernel::BoundingBox Mesh2D::GetBoundingBox() const
Point lowerLeft(std::numeric_limits<double>::max(), std::numeric_limits<double>::max());
Point upperRight(-std::numeric_limits<double>::max(), -std::numeric_limits<double>::max());

// Only need to loop over boundary nodes

// First loop over lower boundary (i,0)
const auto numNodes = GetNumNodes();
for (UInt e = 0; e < numNodes; ++e)
{
Expand All @@ -2043,7 +2040,6 @@ meshkernel::BoundingBox Mesh2D::GetBoundingBox() const

std::vector<meshkernel::BoundingBox> Mesh2D::GetEdgesBoundingBoxes() const
{

const auto numEdges = GetNumEdges();
std::vector<BoundingBox> result(numEdges);
for (UInt e = 0; e < numEdges; ++e)
Expand Down

0 comments on commit 1fd4f5b

Please sign in to comment.