From edef2cda85487c513e678d3f0202d87559211f69 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Wed, 27 Nov 2019 12:08:10 +0100 Subject: [PATCH] [MeL] Remove unused addBottomLayerToMesh(). --- MeshLib/MeshEditing/AddLayerToMesh.cpp | 7 ------- MeshLib/MeshEditing/AddLayerToMesh.h | 5 ----- 2 files changed, 12 deletions(-) diff --git a/MeshLib/MeshEditing/AddLayerToMesh.cpp b/MeshLib/MeshEditing/AddLayerToMesh.cpp index 1e3431f52e8..8ef2f24dad1 100644 --- a/MeshLib/MeshEditing/AddLayerToMesh.cpp +++ b/MeshLib/MeshEditing/AddLayerToMesh.cpp @@ -90,13 +90,6 @@ MeshLib::Mesh* addTopLayerToMesh(MeshLib::Mesh const& mesh, return addLayerToMesh(mesh, thickness, name, true); } -MeshLib::Mesh* addBottomLayerToMesh(MeshLib::Mesh const& mesh, - double thickness, - std::string const& name) -{ - return addLayerToMesh(mesh, thickness, name, false); -} - MeshLib::Mesh* addLayerToMesh(MeshLib::Mesh const& mesh, double thickness, std::string const& name, bool on_top) diff --git a/MeshLib/MeshEditing/AddLayerToMesh.h b/MeshLib/MeshEditing/AddLayerToMesh.h index 9ad1e6e61a6..e9a9f56acc3 100644 --- a/MeshLib/MeshEditing/AddLayerToMesh.h +++ b/MeshLib/MeshEditing/AddLayerToMesh.h @@ -29,11 +29,6 @@ MeshLib::Mesh* addTopLayerToMesh(MeshLib::Mesh const& mesh, double thickness, std::string const& name); -/// Adds a layer at the bottom of the mesh -MeshLib::Mesh* addBottomLayerToMesh(MeshLib::Mesh const& mesh, - double thickness, - std::string const& name); - /// Adds a layer to the mesh. If on_top is true, the layer is added on top, /// if it is false, the layer is added at the bottom. MeshLib::Mesh* addLayerToMesh(MeshLib::Mesh const& mesh, -- GitLab