LAMPCAE/src/MeshData/ElementType.h

16 lines
338 B
C
Raw Normal View History

2023-05-08 06:32:41 +00:00
#ifndef _ELEMENTTYPE_H_
#define _ELEMENTTYPE_H_
#include <QString>
#include <vtkCellType.h>
#include "meshDataAPI.h"
namespace MeshData
{
QString MESHDATAAPI vtkCellTYpeToString(VTKCellType type);
VTKCellType MESHDATAAPI TypeStringToVTKCellType(QString stype);
int MESHDATAAPI GetNodeCountByElementType(VTKCellType t);
}
#endif