Forward compatibility: flex
[foam-extend-3.2.git] / src / mesh / cfMesh / utilities / anisotropicMeshing / surfaceMeshGeometryModification / surfaceMeshGeometryModification.H
blobe8f93b476d83ad8203b1df2ee95b732ca820343f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | cfMesh: A library for mesh generation
4    \\    /   O peration     |
5     \\  /    A nd           | Author: Franjo Juretic (franjo.juretic@c-fields.com)
6      \\/     M anipulation  | Copyright (C) Creative Fields, Ltd.
7 -------------------------------------------------------------------------------
8 License
9     This file is part of cfMesh.
11     cfMesh is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 3 of the License, or (at your
14     option) any later version.
16     cfMesh is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with cfMesh.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     surfaceMeshGeometryModification
27 Description
28     Modifies geometry of surface meshes according to the anisotropic sources
29     given by the user
31 SourceFiles
32     surfaceMeshGeometryModification.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef surfaceMeshGeometryModification_H
37 #define surfaceMeshGeometryModification_H
39 #include "coordinateModification.H"
40 #include "point.H"
41 #include "typeInfo.H"
42 #include "coordinateModifier.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 class triSurf;
50 class dictionary;
52 /*---------------------------------------------------------------------------*\
53                 Class surfaceMeshGeometryModification Declaration
54 \*---------------------------------------------------------------------------*/
56 class surfaceMeshGeometryModification
58     // Private data
59         //- reference to triSurf
60         const triSurf& surf_;
62         //- length of box sides
63         const dictionary& meshDict_;
65         //- contruct coordinate modification
66         coordinateModifier* coordinateModifierPtr_;
68         //- is mofdification active
69         bool modificationActive_;
72     // Private member functions
73         //- check existence of geometry modifiers
74         void checkModification();
76         //- disallow bitwise copy construct
77         surfaceMeshGeometryModification(const surfaceMeshGeometryModification&);
79         //- disallow bitwise assignment
80         void operator=(const surfaceMeshGeometryModification&);
82 public:
84     // Constructors
86         //- Construct from triSurf and dictionary
87         surfaceMeshGeometryModification(const triSurf&, const dictionary&);
89     // Destructor
90         ~surfaceMeshGeometryModification();
92     // Member Functions
94         //- is geometry modification active
95         bool activeModification() const;
97         //- modify coordinates
98         const triSurf* modifyGeometry() const;
100         //- revert geometry modification
101         const triSurf* revertGeometryModification() const;
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
107 } // End namespace Foam
109 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 #endif
113 // ************************************************************************* //