OGS
AddLayerToMesh.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#pragma once
5
6#include <optional>
7#include <string>
8#include <vector>
9
10namespace MeshLib
11{
12
13class Mesh;
14class Node;
15class Element;
16} // namespace MeshLib
17
18namespace MeshToolsLib
19{
20
23MeshLib::Mesh* addLayerToMesh(MeshLib::Mesh const& mesh, double const thickness,
24 std::string const& name, bool const on_top,
25 bool const copy_material_ids,
26 std::optional<int> const layer_id);
27
28} // namespace MeshToolsLib
MeshLib::Mesh * addLayerToMesh(MeshLib::Mesh const &mesh, double const thickness, std::string const &name, bool const on_top, bool const copy_material_ids, std::optional< int > const layer_id)