OGS
createMaterialIDsBasedSubMesh.h
Go to the documentation of this file.
1
12#pragma once
13
14#include <memory>
15#include <string>
16#include <vector>
17
18namespace MeshLib
19{
20class Mesh;
21
22std::unique_ptr<MeshLib::Mesh> createMaterialIDsBasedSubMesh(
23 MeshLib::Mesh const& mesh, std::vector<int> const& material_ids,
24 std::string const& name_for_created_mesh);
25
26} // namespace MeshLib
std::unique_ptr< MeshLib::Mesh > createMaterialIDsBasedSubMesh(MeshLib::Mesh const &mesh, std::vector< int > const &material_ids, std::string const &name_for_created_mesh)