OGS
ConstructMeshesFromGeometries.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#include <memory>
5#include <vector>
6
7#include "MeshLib/Mesh.h"
8
9namespace GeoLib
10{
11class GEOObjects;
12}
13
14namespace MeshGeoToolsLib
15{
16class SearchLength;
17}
18namespace MeshGeoToolsLib
19{
23std::vector<std::unique_ptr<MeshLib::Mesh>>
24constructAdditionalMeshesFromGeoObjects(GeoLib::GEOObjects const& geo_objects,
25 MeshLib::Mesh const& mesh,
26 std::unique_ptr<SearchLength>
27 search_length_algorithm,
28 bool const multiple_nodes_allowed);
29
30std::string meshNameFromGeometry(std::string const& geometrical_set_name,
31 std::string const& geometry_name);
32} // namespace MeshGeoToolsLib
Container class for geometric objects.
Definition GEOObjects.h:46
std::string meshNameFromGeometry(std::string const &geometrical_set_name, std::string const &geometry_name)
std::vector< std::unique_ptr< MeshLib::Mesh > > constructAdditionalMeshesFromGeoObjects(GeoLib::GEOObjects const &geo_objects, MeshLib::Mesh const &mesh, std::unique_ptr< SearchLength > search_length_algorithm, bool const multiple_nodes_allowed)