Added getNeighbours functions to class Operation + moved UpdateMeshDensity to class...
[engrid.git] / vertexmeshdensity.h
blobfa84a7e76e227459ea24ad9c17d99cb9d17ba99d
1 #ifndef VERTEXMESHDENSITY_H
2 #define VERTEXMESHDENSITY_H
4 #include <vtkIdList.h>
5 #include <QSet>
6 #include <QVector>
7 #include <QString>
8 #include "egvtkobject.h"
10 class VertexMeshDensity{
11 public:
12 VertexMeshDensity();
13 // ~VertexMeshDensity();
15 public:
16 QVector <int> BClist;
17 QVector <Qt::CheckState> BClist_value;
18 char type;
19 QSet <vtkIdType> nodeset;
20 double density;
21 vtkIdType CurrentNode;
22 bool operator==(const VertexMeshDensity & VMD) const;
23 void SetNodes(QString str);
26 ostream& operator<<(ostream &out, VertexMeshDensity A);
28 ostream& operator<<(ostream &out, QVector<VertexMeshDensity> VMDvector);
30 #endif