https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: e421f05eb65c8a2efadfcb5c216385a977791e63 authored by wenqing on 13 June 2023, 11:31:41 UTC
Merge branch 'imprv_fixed_stress' into 'master'
Tip revision: e421f05
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