Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/meshgen2d/src/include/VoronoiVertex.h
3203 views
1
#if !defined( MESH_VORONOIVERTEX_H )
2
#define MESH_VORONOIVERTEX_H
3
4
#include "Connect.h"
5
#include "PQ.h"
6
7
#include "BGMesh.h"
8
9
class VoronoiVertex : public Connect
10
{
11
public:
12
VoronoiVertex( const int t ) : Connect(t) { }
13
VoronoiVertex( const int t, BGMesh *bgMesh ) :
14
Connect(t, bgMesh) { }
15
16
void discretize(NodeMap& fixedNodes, NodeMap& allNodes, std::list< Element* >& allElements );
17
18
protected:
19
void generate();
20
21
pq actives;
22
};
23
#endif /* MESH_VORONOIVERTEX_H */
24
25