From d3cc6d5a0d00a6dbe50ff073508028e4be329923 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Thu, 9 Oct 2014 09:02:21 +0200 Subject: [PATCH] [MeL] Fix spacing in MeshSurfaceExtraction.cpp. --- MeshLib/MeshSurfaceExtraction.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MeshLib/MeshSurfaceExtraction.cpp b/MeshLib/MeshSurfaceExtraction.cpp index 82f4a7863b3..7fe8490d4af 100644 --- a/MeshLib/MeshSurfaceExtraction.cpp +++ b/MeshLib/MeshSurfaceExtraction.cpp @@ -68,10 +68,10 @@ std::vector<double> MeshSurfaceExtraction::getSurfaceAreaForNodes(const MeshLib: MeshLib::Mesh* MeshSurfaceExtraction::getMeshSurface(const MeshLib::Mesh &mesh, const MathLib::Vector3 &dir, double angle, bool keepOriginalNodeIds) { - if (angle< 0 || angle > 90) + if (angle < 0 || angle > 90) { - ERR ("Supported angle between 0 and 90 degrees only."); - return nullptr; + ERR ("Supported angle between 0 and 90 degrees only."); + return nullptr; } INFO ("Extracting mesh surface..."); @@ -141,7 +141,7 @@ void MeshSurfaceExtraction::get2DSurfaceElements(const std::vector<MeshLib::Elem { MeshLib::Face* face = static_cast<MeshLib::Face*>(*elem); if (MathLib::scalarProduct(face->getSurfaceNormal().getNormalizedVector(), norm_dir) > cos_theta) - continue; + continue; } sfc_elements.push_back(*elem); } -- GitLab