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