OGS
QuadRule9.cpp
Go to the documentation of this file.
1
10#include "QuadRule9.h"
11
12namespace MeshLib
13{
14const unsigned QuadRule9::edge_nodes[4][3] = {
15 {0, 1, 4}, // Edge 0
16 {1, 2, 5}, // Edge 1
17 {2, 3, 6}, // Edge 2
18 {3, 0, 7} // Edge 3
19};
20
21} // end namespace MeshLib
static const unsigned edge_nodes[4][3]
Constant: Local node index table for edge.
Definition QuadRule9.h:46