33 #ifndef VTK_XML_PARSER
34 #define VTK_XML_PARSER
36 namespace vtk_xml_parser {
38 enum class VtkFileFormat {
45 const static std::string VTK_VTU_EXTENSION;
46 const static std::string VTK_VTP_EXTENSION;
49 void load_fiber_direction_vtu(
const std::string& file_name,
const std::string& data_name,
const int idx,
52 void load_vtp(
const std::string& file_name,
faceType& face);
54 void load_vtp(
const std::string& file_name,
mshType& mesh);
56 void load_vtu(
const std::string& file_name,
mshType& mesh);
58 void load_vtu(
const std::string& file_name,
faceType& face);
60 void load_time_varying_field_vtu(
const std::string file_name,
const std::string field_name,
mshType& mesh);
The face type containing mesh at boundary.
Definition: ComMod.h:521
This is the container for a mesh or NURBS patch, those specific to NURBS are noted.
Definition: ComMod.h:810
Definition: vtk_xml_parser.h:43