https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: b01d4fa5d6d80e1f65970297393113eb6e8d29f7 authored by Lars Bilke on 08 November 2023, 13:25:51 UTC
Merge branch 'mkl-find' into 'master'
Tip revision: b01d4fa
getMeshElementsForMaterialIDs.h
/**
 * \file
 *
 * \copyright
 * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include <vector>

namespace MeshLib
{
class Element;
class Mesh;

std::vector<MeshLib::Element*> getMeshElementsForMaterialIDs(
    MeshLib::Mesh const& mesh, std::vector<int> const& selected_material_ids);
}  // namespace MeshLib
back to top