diff --git a/src/TNL/Meshes/MeshDetails/Mesh_impl.h b/src/TNL/Meshes/MeshDetails/Mesh_impl.h index ee5876691bfb079f3d692520d58fff8631912476..5e0e9cfbfd77a203563972a324332f042048a5e2 100644 --- a/src/TNL/Meshes/MeshDetails/Mesh_impl.h +++ b/src/TNL/Meshes/MeshDetails/Mesh_impl.h @@ -316,4 +316,3 @@ std::ostream& operator<<( std::ostream& str, const Mesh< MeshConfig, Device >& m } // namespace Meshes } // namespace TNL - diff --git a/src/TNL/Meshes/MeshDetails/layers/MeshStorageLayer.h b/src/TNL/Meshes/MeshDetails/layers/MeshStorageLayer.h index fbf4d0fc4633683ccfb9487df6cfa7f67e8b626a..bead5dcfd804dd7104cbedb66e10ccdccee20a2c 100644 --- a/src/TNL/Meshes/MeshDetails/layers/MeshStorageLayer.h +++ b/src/TNL/Meshes/MeshDetails/layers/MeshStorageLayer.h @@ -400,38 +400,6 @@ public: } - GlobalIndexType getVerticesCount() const - { - return this->vertices.getSize(); - } - - void setVertex( const GlobalIndexType vertexIndex, - const VertexType& vertex ) const - { - this->vertices.setElement( vertexIndex, vertex ); - } - - VertexType& getVertex( const GlobalIndexType vertexIndex ) - { - return this->vertices[ vertexIndex ]; - } - - const VertexType& getVertex( const GlobalIndexType vertexIndex ) const - { - return this->vertices[ vertexIndex ]; - } - - void setVertex( const GlobalIndexType vertexIndex, - const PointType& point ) - { - this->vertices[ vertexIndex ].setPoint( point ); - } - - /**** - * This is only for the completeness and compatibility - * with higher dimensions entities storage layers. - */ - void setNumberOfEntities( DimensionTag, const GlobalIndexType& entitiesCount ) { this->vertices.setSize( entitiesCount );