2 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
4 // + This file is part of enGrid. +
6 // + Copyright 2008,2009 Oliver Gloth +
8 // + enGrid is free software: you can redistribute it and/or modify +
9 // + it under the terms of the GNU General Public License as published by +
10 // + the Free Software Foundation, either version 3 of the License, or +
11 // + (at your option) any later version. +
13 // + enGrid is distributed in the hope that it will be useful, +
14 // + but WITHOUT ANY WARRANTY; without even the implied warranty of +
15 // + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +
16 // + GNU General Public License for more details. +
18 // + You should have received a copy of the GNU General Public License +
19 // + along with enGrid. If not, see <http://www.gnu.org/licenses/>. +
21 // ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
23 #ifndef SURFACEALGORITHM_H
24 #define SURFACEALGORITHM_H
26 #include <vtkUnstructuredGrid.h>
27 #include <vtkPolyData.h>
28 #include <vtkCharArray.h>
33 #include <QTextStream>
36 #include "surfaceoperation.h"
37 #include "vertexmeshdensity.h"
38 #include "geometrytools.h"
43 class SurfaceAlgorithm
: public SurfaceOperation
46 protected: // attributes
48 QVector
<VertexMeshDensity
> VMDvector
;
51 double m_MaxEdgeLength
;
52 double m_NodesPerQuarterCircle
;
53 bool m_RespectFeatureEdgesForDeleteNodes
;
54 double m_FeatureAngleForDeleteNodes
;
55 bool m_PerformGeometricTests
;
56 bool m_UseProjectionForSmoothing
;
57 bool m_UseNormalCorrectionForSmoothing
;
58 bool m_AllowFeatureEdgeSwapping
;
59 double m_GrowthFactor
;
61 int m_NumDelaunaySweeps
;
74 void smooth(int N_iter
);
77 void computeMeshDensity();
78 void updateNodeInfo(bool update_type
= false);
85 void setVertexMeshDensityVector(QVector
<VertexMeshDensity
> a_VMDvector
) { VMDvector
= a_VMDvector
; }
86 void setMaxEdgeLength(double l
) { m_MaxEdgeLength
= l
; }
87 void setNodesPerQuarterCircle(double N
) { m_NodesPerQuarterCircle
= N
; }
88 void setCellGrowthFactor(double cgf
) { m_GrowthFactor
= cgf
; }
92 #endif // SURFACEALGORITHM_H