diff --git a/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp b/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp
index 81d7428537a36087b0b79e623ac217c189ddea5a..af6431d9c34b731f0c21019ebe59651d8d8f064c 100644
--- a/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp
+++ b/Applications/DataExplorer/DataView/DirectConditionGenerator.cpp
@@ -41,7 +41,8 @@ const std::vector< std::pair<std::size_t,double> >& DirectConditionGenerator::di
         }
 
         const MathLib::Vector3 dir(0,0,-1);
-        const std::vector<GeoLib::Point*> surface_nodes(MeshLib::MeshSurfaceExtraction::getSurfaceNodes(mesh, dir, 90) );
+        const std::vector<MeshLib::Node*> surface_nodes(
+            MeshLib::MeshSurfaceExtraction::getSurfaceNodes(mesh, dir, 90));
         const std::size_t nNodes(surface_nodes.size());
         const double no_data (raster->getHeader().no_data);
         _direct_values.reserve(nNodes);
diff --git a/Applications/Utils/MeshGeoTools/ComputeSurfaceNodeIDsInPolygonalRegion.cpp b/Applications/Utils/MeshGeoTools/ComputeSurfaceNodeIDsInPolygonalRegion.cpp
index 75db24be21a13347bf068ec8e378a0b4f87f54f4..9e9ef6c371a5e0f5349deceb1f421d436ab9feb6 100644
--- a/Applications/Utils/MeshGeoTools/ComputeSurfaceNodeIDsInPolygonalRegion.cpp
+++ b/Applications/Utils/MeshGeoTools/ComputeSurfaceNodeIDsInPolygonalRegion.cpp
@@ -110,11 +110,12 @@ int main (int argc, char* argv[])
     };
 
     std::vector<double> areas(computeElementTopSurfaceAreas(*mesh, dir, angle));
-    std::vector<GeoLib::Point*> all_sfc_pnts(
+    std::vector<MeshLib::Node*> all_sfc_nodes(
         MeshLib::MeshSurfaceExtraction::getSurfaceNodes(*mesh, dir, angle)
     );
 
-    std::for_each(all_sfc_pnts.begin(), all_sfc_pnts.end(), [](GeoLib::Point* p) { (*p)[2] = 0.0; });
+    std::for_each(all_sfc_nodes.begin(), all_sfc_nodes.end(),
+                  [](MeshLib::Node* p) { (*p)[2] = 0.0; });
 
     std::vector<MeshLib::Node*> const& mesh_nodes(mesh->getNodes());
     GeoLib::PolylineVec const* ply_vec(
@@ -134,9 +135,9 @@ int main (int argc, char* argv[])
         GeoLib::Polygon const& polygon(*(plys[j]));
         // ids of mesh nodes on surface that are within the given polygon
         std::vector<std::pair<std::size_t, double>> ids_and_areas;
-        for (std::size_t k(0); k<all_sfc_pnts.size(); k++) {
-            GeoLib::Point const& pnt(*(all_sfc_pnts[k]));
-            if (polygon.isPntInPolygon(pnt)) {
+        for (std::size_t k(0); k<all_sfc_nodes.size(); k++) {
+            MeshLib::Node const& pnt(*(all_sfc_nodes[k]));
+            if (polygon.isPntInPolygon(pnt[0], pnt[1], pnt[2])) {
                 ids_and_areas.push_back(std::make_pair(pnt.getID(), areas[k]));
             }
         }
diff --git a/MeshLib/MeshSurfaceExtraction.cpp b/MeshLib/MeshSurfaceExtraction.cpp
index e147d3a6f98a03f38d53f3ec92592d9ebd4ce754..4f87902f17f0ad0d372d6bed90bfa52225b97d8a 100644
--- a/MeshLib/MeshSurfaceExtraction.cpp
+++ b/MeshLib/MeshSurfaceExtraction.cpp
@@ -18,8 +18,6 @@
 
 #include "logog/include/logog.hpp"
 
-#include "GeoLib/Point.h"
-
 #include "MeshLib/Mesh.h"
 #include "MeshLib/Elements/Line.h"
 #include "MeshLib/Elements/Tri.h"
@@ -228,14 +226,12 @@ void MeshSurfaceExtraction::get2DSurfaceNodes(
     const std::vector<MeshLib::Element*>& sfc_elements,
     std::vector<std::size_t>& node_id_map)
 {
-    const std::size_t nNewElements (sfc_elements.size());
     std::vector<const MeshLib::Node*> tmp_nodes(n_all_nodes, nullptr);
-    for (std::size_t i=0; i<nNewElements; ++i)
+    for (auto const* elem : sfc_elements)
     {
-        const MeshLib::Element* elem (sfc_elements[i]);
-        for (unsigned j=0; j<elem->getNumberOfBaseNodes(); ++j)
+        for (unsigned j = 0; j < elem->getNumberOfBaseNodes(); ++j)
         {
-            const MeshLib::Node* node (elem->getNode(j));
+            const MeshLib::Node* node(elem->getNode(j));
             tmp_nodes[node->getID()] = node;
         }
     }
@@ -245,12 +241,13 @@ void MeshSurfaceExtraction::get2DSurfaceNodes(
         if (tmp_nodes[i])
         {
             node_id_map[i] = sfc_nodes.size();
-            sfc_nodes.push_back(new MeshLib::Node(tmp_nodes[i]->getCoords(), tmp_nodes[i]->getID()));
+            sfc_nodes.push_back(new MeshLib::Node(*tmp_nodes[i]));
         }
     }
 }
 
-std::vector<GeoLib::Point*> MeshSurfaceExtraction::getSurfaceNodes(const MeshLib::Mesh &mesh, const MathLib::Vector3 &dir, double angle)
+std::vector<MeshLib::Node*> MeshSurfaceExtraction::getSurfaceNodes(
+    const MeshLib::Mesh& mesh, const MathLib::Vector3& dir, double angle)
 {
     INFO ("Extracting surface nodes...");
     std::vector<MeshLib::Element*> sfc_elements;
@@ -265,14 +262,7 @@ std::vector<GeoLib::Point*> MeshSurfaceExtraction::getSurfaceNodes(const MeshLib
     for (auto e : sfc_elements)
         delete e;
 
-    const std::size_t nNodes (sfc_nodes.size());
-    std::vector<GeoLib::Point*> surface_pnts(nNodes);
-    for (std::size_t i=0; i<nNodes; ++i)
-    {
-        surface_pnts[i] = new GeoLib::Point(*(sfc_nodes[i]), sfc_nodes[i]->getID());
-        delete sfc_nodes[i];
-    }
-    return surface_pnts;
+    return sfc_nodes;
 }
 
 } // end namespace MeshLib
diff --git a/MeshLib/MeshSurfaceExtraction.h b/MeshLib/MeshSurfaceExtraction.h
index 863882a222e6d46fb117cbbe0f00b5454ee24b18..d22ec59145b60a21328da14f93bbe2df5e24cf1a 100644
--- a/MeshLib/MeshSurfaceExtraction.h
+++ b/MeshLib/MeshSurfaceExtraction.h
@@ -20,10 +20,6 @@
 
 #include "MathLib/Vector3.h"
 
-namespace GeoLib {
-    class Point;
-}
-
 namespace MeshLib {
 // forward declarations
 class Mesh;
@@ -40,7 +36,8 @@ public:
     static std::vector<double> getSurfaceAreaForNodes(const MeshLib::Mesh &mesh);
 
     /// Returns the surface nodes of a mesh.
-    static std::vector<GeoLib::Point*> getSurfaceNodes(const MeshLib::Mesh &mesh, const MathLib::Vector3 &dir, double angle);
+    static std::vector<MeshLib::Node*> getSurfaceNodes(
+        const MeshLib::Mesh& mesh, const MathLib::Vector3& dir, double angle);
 
     /**
      * Returns the 2d-element mesh representing the surface of the given mesh.