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