https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 36aee2e32ac96af35c751608ff052378e3606152 authored by Wenqing Wang on 07 February 2022, 16:45:32 UTC
[web/Test/TRM] Added a description about the benchmark of
Tip revision: 36aee2e
Elements.h
/*
 * \file
 * \brief Cumulative include for all available mesh element types.
 *
 * \copyright
 * Copyright (c) 2012-2022, 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 "MeshLib/Elements/Element.h"
#include "MeshLib/Elements/Line.h"
#include "MeshLib/Elements/Hex.h"
#include "MeshLib/Elements/Point.h"
#include "MeshLib/Elements/Prism.h"
#include "MeshLib/Elements/Pyramid.h"
#include "MeshLib/Elements/Quad.h"
#include "MeshLib/Elements/Tet.h"
#include "MeshLib/Elements/Tri.h"

namespace MeshLib
{

/// A list of types listing all mesh element types supported by OGS.
///
/// This type alias is intended for template metaprogramming et al., not for
/// direct use/instantiation.
using AllElementTypes =
    std::tuple<Point, Line, Line3, Quad, Quad8, Quad9, Hex, Hex20, Tri, Tri6,
               Tet, Tet10, Prism, Prism15, Pyramid, Pyramid13>;

}  // namespace MeshLib
back to top