10#include <tclap/CmdLine.h>
33int main(
int argc,
char* argv[])
36 "Converts VTK mesh into TIN file.\n\n"
37 "OpenGeoSys-6 software, version " +
40 "Copyright (c) 2012-2024, OpenGeoSys Community "
41 "(http://www.opengeosys.org)",
43 TCLAP::ValueArg<std::string> mesh_in(
44 "i",
"mesh-input-file",
45 "the name of the file containing the input mesh",
true,
"",
46 "file name of input mesh");
48 TCLAP::ValueArg<std::string> mesh_out(
49 "o",
"TIN-output-file",
50 "the name of the file the TIN will be written to",
true,
"",
51 "file name of output TIN");
53 cmd.parse(argc, argv);
56 std::unique_ptr<MeshLib::Mesh> mesh(
58 INFO(
"Mesh read: {:d} nodes, {:d} elements.", mesh->getNumberOfNodes(),
59 mesh->getNumberOfElements());
61 INFO(
"Converting the mesh to TIN");
65 INFO(
"Writing TIN into the file");
Definition of the Element class.
Definition of the GEOObjects class.
void INFO(fmt::format_string< Args... > fmt, Args &&... args)
Definition of the Mesh class.
Definition of the Node class.
int main(int argc, char *argv[])
Implementation of the VtuInterface class.
Container class for geometric objects.
const std::vector< Surface * > * getSurfaceVec(const std::string &name) const
Returns the surface vector with the given name as a const.
static void writeSurfaceAsTIN(GeoLib::Surface const &surface, std::string const &file_name)
static MeshLib::Mesh * readVTUFile(std::string const &file_name, bool const compute_element_neighbors=false)
Definition of mesh to geometry conversion.
GITINFOLIB_EXPORT const std::string ogs_version