Libs/Mesh/PreviewMeshQC/FENodeNodeList.h
Classes
| Name | |
|---|---|
| class | FENodeNodeList |
Source code
```cpp
pragma once
include
using namespace std;
class FEMesh;
class FENodeNodeList { public: FENodeNodeList(FEMesh* pm); ~FENodeNodeList();
void Build();
int Valence(int n) { return m_val[n]; }
int Node(int n, int j) { return m_node[ m_off[n] + j]; }
protected: FEMesh* m_pm;
vector<int> m_val;
vector<int> m_off;
vector<int> m_node;
}; ```
Updated on 2026-03-31 at 16:02:11 +0000