https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: bd25e464ec594990bdf959af304e76bd94a61472 authored by Tom Fischer on 29 May 2023, 08:39:32 UTC
Merge branch 'MoveMeshFunctions' into 'master'
Tip revision: bd25e46
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