OGS
QuadRule8.cpp
Go to the documentation of this file.
1 
11 #include "QuadRule8.h"
12 
13 namespace MeshLib
14 {
15 const 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  {0, 3, 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