OGS
LineRule2.h
Go to the documentation of this file.
1
11#pragma once
12
13#include "EdgeReturn.h"
14#include "LineRule.h"
15
16namespace MeshLib
17{
24class LineRule2 : public LineRule
25{
26public:
28 static const unsigned n_all_nodes = 2u;
29
32
34 constexpr static const unsigned edge_nodes[1][2] = {
35 {0, 1} // Edge 0
36 };
37
40}; /* class */
41
42} // namespace MeshLib
static const CellType cell_type
Constant: The FEM type of the element.
Definition LineRule2.h:31
static const unsigned n_all_nodes
Constant: The number of all nodes for this element.
Definition LineRule2.h:28
static constexpr const unsigned edge_nodes[1][2]
Constant: Local node index table for edge.
Definition LineRule2.h:34
Returns linear order edge.
Definition EdgeReturn.h:31
CellType
Types of mesh elements supported by OpenGeoSys.
Definition MeshEnums.h:64