9namespace vtk_xml_parser {
11enum class VtkFileFormat {
18 const static std::string VTK_VTU_EXTENSION;
19 const static std::string VTK_VTP_EXTENSION;
22void load_fiber_direction_vtu(
const std::string& file_name,
const std::string& data_name,
const int idx,
25void load_vtp(
const std::string& file_name,
faceType& face);
27void load_vtp(
const std::string& file_name,
mshType& mesh);
29void load_vtu(
const std::string& file_name,
mshType& mesh);
31void load_vtu(
const std::string& file_name,
faceType& face);
33void 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:511
This is the container for a mesh or NURBS patch, those specific to NURBS are noted.
Definition ComMod.h:863
Definition vtk_xml_parser.h:16