]> SALOME platform Git repositories - modules/smesh.git/blob - src/SMDS/SMDS_MeshEdge.cxx
Salome HOME
fix bug of compactGrid() that the last block of nodes and elements is
[modules/smesh.git] / src / SMDS / SMDS_MeshEdge.cxx
1 #include "SMDS_MeshEdge.hxx"
2
3 SMDSAbs_ElementType SMDS_MeshEdge::GetType() const
4 {
5         return SMDSAbs_Edge;
6 }
7
8 vtkIdType SMDS_MeshEdge::GetVtkType() const
9 {
10   return VTK_POLY_VERTEX; // --- must be reimplemented in derived classes
11 }