https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: a792cc49d88c96531a095fc2b5df48f0d27da119 authored by Christoph Lehmann on 12 October 2023, 08:15:49 UTC
Merge branch 'reflect-io-for-tuples' into 'master'
Tip revision: a792cc4
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