https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 72ca22409b041938e15b9605d725efec8d442b37 authored by Lars Bilke on 26 October 2023, 06:23:09 UTC
Merge branch 'metis-upstream' into 'master'
Tip revision: 72ca224
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