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