Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/meshgen2d/src/include/Triple.h
3203 views
1
#if !defined( MESH_TRIPLE_H )
2
#define MESH_TRIPLE_H
3
4
class Node;
5
class Vertex;
6
7
class Triple
8
{
9
public:
10
Triple() { }
11
Node *from;
12
Node *to;
13
Vertex *vtx;
14
};
15
16
17
#endif /* MESH_TRIPLE_H */
18
19