36namespace vtk_xml_parser {
38enum class VtkFileFormat {
45 const static std::string VTK_VTU_EXTENSION;
46 const static std::string VTK_VTP_EXTENSION;
49void load_fiber_direction_vtu(
const std::string& file_name,
const std::string& data_name,
const int idx,
52void load_vtp(
const std::string& file_name,
faceType& face);
54void load_vtp(
const std::string& file_name,
mshType& mesh);
56void load_vtu(
const std::string& file_name,
mshType& mesh);
58void load_vtu(
const std::string& file_name,
faceType& face);
60void 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:832
Definition vtk_xml_parser.h:43