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