diff --git a/MeshLib/Elements/EdgeRule.h b/MeshLib/Elements/EdgeRule.h
index e7cd1e02598f478fb60b9603d09c8dbcc19d610b..4cc0c48fecfacde8cf9e1bd6f5586899cc2a0bc1 100644
--- a/MeshLib/Elements/EdgeRule.h
+++ b/MeshLib/Elements/EdgeRule.h
@@ -27,9 +27,6 @@ public:
     /// Constant: The number of edges
     static const unsigned n_edges = 0;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned /*i*/) { return 0; }
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* /*e*/, unsigned /*i*/) { return nullptr; }
 
diff --git a/MeshLib/Elements/Element.h b/MeshLib/Elements/Element.h
index ec6ce23d86fdc391f83160975b70b501fd4ec1df..c72f2809f6ad5b9fae70bc7f52c68d6bc7bb278d 100644
--- a/MeshLib/Elements/Element.h
+++ b/MeshLib/Elements/Element.h
@@ -94,9 +94,6 @@ public:
     /// Get the number of edges for this element.
     virtual unsigned getNumberOfEdges() const = 0;
 
-    /// Get the number of nodes for face i.
-    virtual unsigned getNumberOfFaceNodes(unsigned i) const = 0;
-
     /// Get the number of faces for this element.
     virtual unsigned getNumberOfFaces() const = 0;
 
diff --git a/MeshLib/Elements/FaceRule.h b/MeshLib/Elements/FaceRule.h
index fec27ce93157aa14ddea701980ee053867c7b06f..2b612af040983024e1f4f9f40d3dc984026b678a 100644
--- a/MeshLib/Elements/FaceRule.h
+++ b/MeshLib/Elements/FaceRule.h
@@ -25,9 +25,6 @@ public:
     /// Returns the face i of the element.
     static const Element* getFace(const Element* e, unsigned i) { return e->getEdge(i); }
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned /*i*/) { return 2; }
-
     /// Constant: The number of faces
     static const unsigned n_faces = 0;
 
diff --git a/MeshLib/Elements/HexRule20.h b/MeshLib/Elements/HexRule20.h
index b3a46bfb7f4f68a734d9c2cfca373a2c433c0c0c..92045b17aa60294f02b62bf6c0470a4129fbdf06 100644
--- a/MeshLib/Elements/HexRule20.h
+++ b/MeshLib/Elements/HexRule20.h
@@ -61,9 +61,6 @@ public:
     /// Returns the i-th edge of the element.
     typedef QuadraticEdgeReturn EdgeReturn;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned /*i*/) { return 8; }
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* e, unsigned i);
 
diff --git a/MeshLib/Elements/HexRule8.h b/MeshLib/Elements/HexRule8.h
index dd8c40619bb7e4585d9356d5a13a4de6db6674e7..9c6bbf64ca8e99ffbe2829f8baffc2a94b89d9ba 100644
--- a/MeshLib/Elements/HexRule8.h
+++ b/MeshLib/Elements/HexRule8.h
@@ -76,9 +76,6 @@ public:
     /// Returns the i-th edge of the element.
     typedef LinearEdgeReturn EdgeReturn;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned /*i*/) { return 4; }
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* e, unsigned i);
 
diff --git a/MeshLib/Elements/PrismRule15.cpp b/MeshLib/Elements/PrismRule15.cpp
index 80e24a8b474e3eef67da6f1399327ef50be097fb..4031802c356dee3fface5ce6736b70c1810b91d8 100644
--- a/MeshLib/Elements/PrismRule15.cpp
+++ b/MeshLib/Elements/PrismRule15.cpp
@@ -41,19 +41,11 @@ const unsigned PrismRule15::edge_nodes[9][3] =
 
 const unsigned PrismRule15::n_face_nodes[5] = { 6, 8, 8, 8, 6 };
 
-unsigned PrismRule15::getNumberOfFaceNodes(unsigned i)
-{
-    if (i<5)
-        return n_face_nodes[i];
-    ERR("Error in MeshLib::Element::getNumberOfFaceNodes() - Index %d does not exist.", i);
-    return 0;
-}
-
 const Element* PrismRule15::getFace(const Element* e, unsigned i)
 {
     if (i < n_faces)
     {
-        unsigned nFaceNodes (e->getNumberOfFaceNodes(i));
+        unsigned nFaceNodes(PrismRule15::n_face_nodes[i]);
         Node** nodes = new Node*[nFaceNodes];
         for (unsigned j=0; j<nFaceNodes; j++)
             nodes[j] = const_cast<Node*>(e->getNode(face_nodes[i][j]));
diff --git a/MeshLib/Elements/PrismRule15.h b/MeshLib/Elements/PrismRule15.h
index 740cd0d4fbaee76cdfa33e8c9724e10c6e30ee77..6eed3e97a4e2a83295e43d9fc9c7df84464dc309 100644
--- a/MeshLib/Elements/PrismRule15.h
+++ b/MeshLib/Elements/PrismRule15.h
@@ -62,9 +62,6 @@ public:
     /// Returns the i-th edge of the element.
     typedef QuadraticEdgeReturn EdgeReturn;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned i);
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* e, unsigned i);
 
diff --git a/MeshLib/Elements/PrismRule6.cpp b/MeshLib/Elements/PrismRule6.cpp
index 33dcd3688605eac7e5430f7665f0fc048f6370e4..46e227b2360b9fb1c9d08061d858c3d3ac1e9eb8 100644
--- a/MeshLib/Elements/PrismRule6.cpp
+++ b/MeshLib/Elements/PrismRule6.cpp
@@ -43,19 +43,11 @@ const unsigned PrismRule6::edge_nodes[9][2] =
 
 const unsigned PrismRule6::n_face_nodes[5] = { 3, 4, 4, 4, 3 };
 
-unsigned PrismRule6::getNumberOfFaceNodes(unsigned i)
-{
-    if (i<5)
-        return n_face_nodes[i];
-    ERR("Error in MeshLib::Element::getNumberOfFaceNodes() - Index %d does not exist.", i);
-    return 0;
-}
-
 const Element* PrismRule6::getFace(const Element* e, unsigned i)
 {
     if (i < n_faces)
     {
-        unsigned nFaceNodes (e->getNumberOfFaceNodes(i));
+        unsigned nFaceNodes(PrismRule6::n_face_nodes[i]);
         Node** nodes = new Node*[nFaceNodes];
         for (unsigned j=0; j<nFaceNodes; j++)
             nodes[j] = const_cast<Node*>(e->getNode(face_nodes[i][j]));
diff --git a/MeshLib/Elements/PrismRule6.h b/MeshLib/Elements/PrismRule6.h
index 08ab94f48023ee5f10c9397c2e98a78c9324e63e..0630d52ecfe8994f218036ce8d8985f38ad0ba4e 100644
--- a/MeshLib/Elements/PrismRule6.h
+++ b/MeshLib/Elements/PrismRule6.h
@@ -77,9 +77,6 @@ public:
     /// Returns the i-th edge of the element.
     typedef LinearEdgeReturn EdgeReturn;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned i);
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* e, unsigned i);
 
diff --git a/MeshLib/Elements/PyramidRule13.cpp b/MeshLib/Elements/PyramidRule13.cpp
index 03329440a83e2b19be0cf9a0c4118dc9329cb607..941f693ca459a74eb46a4e7c4df98fc3af9877ba 100644
--- a/MeshLib/Elements/PyramidRule13.cpp
+++ b/MeshLib/Elements/PyramidRule13.cpp
@@ -40,19 +40,11 @@ const unsigned PyramidRule13::edge_nodes[8][3] =
 
 const unsigned PyramidRule13::n_face_nodes[5] = { 6, 6, 6, 6, 8 };
 
-unsigned PyramidRule13::getNumberOfFaceNodes(unsigned i)
-{
-    if (i<5)
-        return n_face_nodes[i];
-    ERR("Error in MeshLib::Element::getNumberOfFaceNodes() - Index %d does not exist.", i);
-    return 0;
-}
-
 const Element* PyramidRule13::getFace(const Element* e, unsigned i)
 {
     if (i<e->getNumberOfFaces())
     {
-        unsigned nFaceNodes (e->getNumberOfFaceNodes(i));
+        unsigned nFaceNodes(PyramidRule13::n_face_nodes[i]);
         Node** nodes = new Node*[nFaceNodes];
         for (unsigned j=0; j<nFaceNodes; j++)
             nodes[j] = const_cast<Node*>(e->getNode(face_nodes[i][j]));
diff --git a/MeshLib/Elements/PyramidRule13.h b/MeshLib/Elements/PyramidRule13.h
index b5bf9c2bccbd2193225956cb21d4c7cdcb401926..b9230293730df1cd0e61f28bc90e0bfb51120e8f 100644
--- a/MeshLib/Elements/PyramidRule13.h
+++ b/MeshLib/Elements/PyramidRule13.h
@@ -61,9 +61,6 @@ public:
     /// Returns the i-th edge of the element.
     typedef QuadraticEdgeReturn EdgeReturn;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned i);
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* e, unsigned i);
 
diff --git a/MeshLib/Elements/PyramidRule5.cpp b/MeshLib/Elements/PyramidRule5.cpp
index 476aad78092d513778b38857b04095c8435518ef..2ee24c2cfd51c6a198c40cff675131b1579df584 100644
--- a/MeshLib/Elements/PyramidRule5.cpp
+++ b/MeshLib/Elements/PyramidRule5.cpp
@@ -42,19 +42,11 @@ const unsigned PyramidRule5::edge_nodes[8][2] =
 
 const unsigned PyramidRule5::n_face_nodes[5] = { 3, 3, 3, 3, 4 };
 
-unsigned PyramidRule5::getNumberOfFaceNodes(unsigned i)
-{
-    if (i<5)
-        return n_face_nodes[i];
-    ERR("Error in MeshLib::Element::getNumberOfFaceNodes() - Index %d does not exist.", i);
-    return 0;
-}
-
 const Element* PyramidRule5::getFace(const Element* e, unsigned i)
 {
     if (i<e->getNumberOfFaces())
     {
-        unsigned nFaceNodes (e->getNumberOfFaceNodes(i));
+        unsigned nFaceNodes(PyramidRule5::n_face_nodes[i]);
         Node** nodes = new Node*[nFaceNodes];
         for (unsigned j=0; j<nFaceNodes; j++)
             nodes[j] = const_cast<Node*>(e->getNode(face_nodes[i][j]));
diff --git a/MeshLib/Elements/PyramidRule5.h b/MeshLib/Elements/PyramidRule5.h
index 6e268e55de5a30e8b75bee8bb06ba13f231e9b0e..803723984e065b4e90ba6f76f879e96e4d5d3462 100644
--- a/MeshLib/Elements/PyramidRule5.h
+++ b/MeshLib/Elements/PyramidRule5.h
@@ -76,9 +76,6 @@ public:
     /// Returns the i-th edge of the element.
     typedef LinearEdgeReturn EdgeReturn;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned i);
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* e, unsigned i);
 
diff --git a/MeshLib/Elements/TemplateElement.h b/MeshLib/Elements/TemplateElement.h
index 98e4ed3c57629a4c6e86449495a6b5b2e2b00bc0..cf178cbf7b3bbd9f439c558be90a1895934b2064 100644
--- a/MeshLib/Elements/TemplateElement.h
+++ b/MeshLib/Elements/TemplateElement.h
@@ -81,9 +81,6 @@ public:
     /// Get the number of edges for this element.
     unsigned getNumberOfEdges() const { return ELEMENT_RULE::n_edges; }
 
-    /// Get the number of nodes for face i.
-    unsigned getNumberOfFaceNodes(unsigned i) const { return ELEMENT_RULE::getNumberOfFaceNodes(i); }
-
     /// Get the number of faces for this element.
     unsigned getNumberOfFaces() const { return ELEMENT_RULE::n_faces; }
 
diff --git a/MeshLib/Elements/TetRule10.h b/MeshLib/Elements/TetRule10.h
index dcd7ede80878e17d378d4a1f513780ebd5fc9c2f..2657fa3b53e7a069c9b71acc5b10e3a37e8db195 100644
--- a/MeshLib/Elements/TetRule10.h
+++ b/MeshLib/Elements/TetRule10.h
@@ -56,9 +56,6 @@ public:
     /// Returns the i-th edge of the element.
     typedef QuadraticEdgeReturn EdgeReturn;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned /*i*/) { return 6; }
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* e, unsigned i);
 
diff --git a/MeshLib/Elements/TetRule4.h b/MeshLib/Elements/TetRule4.h
index ddee10f6122559bb60e9f3e3115c290ac45a4481..53927c6272d4f0767ab7e6e0fc6316ef77fd8fd8 100644
--- a/MeshLib/Elements/TetRule4.h
+++ b/MeshLib/Elements/TetRule4.h
@@ -71,9 +71,6 @@ public:
     /// Returns the i-th edge of the element.
     typedef LinearEdgeReturn EdgeReturn;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned /*i*/) { return 3; }
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* e, unsigned i);
 
diff --git a/MeshLib/Elements/VertexRule.h b/MeshLib/Elements/VertexRule.h
index d609015f59445a12b3ddee3d5ae10ecb60803933..e4c894d55580798dd45a5337e0ac0ff2ff30168f 100644
--- a/MeshLib/Elements/VertexRule.h
+++ b/MeshLib/Elements/VertexRule.h
@@ -27,12 +27,6 @@ public:
     /// Constant: The number of edges
     static const unsigned n_edges = 0;
 
-    /// Get the number of nodes for face i.
-    static unsigned getNumberOfFaceNodes(unsigned /*i*/)
-    {
-        return 0;
-    }
-
     /// Returns the i-th face of the element.
     static const Element* getFace(const Element* /*e*/, unsigned /*i*/)
     {