improved VMD class
[engrid.git] / laplacesmoother.h
blob9ffffb283096daa4110b81669adc055d3549138a
1 #ifndef LAPLACESMOOTHER_H
2 #define LAPLACESMOOTHER_H
4 #include "operation.h"
6 class LaplaceSmoother : public Operation {
7 public:
8 LaplaceSmoother();
9 ~LaplaceSmoother();
10 int Process();
11 void operate();
13 public:
14 void SetInput(QSet<int> a_bcs,vtkUnstructuredGrid* a_grid)
16 m_bcs=a_bcs;
17 m_grid=a_grid;
19 void SetNumberOfIterations(int N){NumberOfIterations=N;};
21 public:
22 QSet<int> m_bcs;
23 vtkUnstructuredGrid* m_grid;
24 int NumberOfIterations;
28 #endif