triSurfaceExtrude2DEdges.H
Go to the documentation of this file.
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.
10 
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.
15 
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.
20 
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/>.
23 
24 Class
25  triSurfaceExtrude2DEdges
26 
27 Description
28  Extrudes edges in x-y plane into a triangulation used for 2D meshing
29 
30 SourceFiles
31  triSurfaceExtrude2DEdges.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef triSurfaceExtrude2DEdges_H
36 #define triSurfaceExtrude2DEdges_H
37 
38 #include "triSurf.H"
39 #include "boolList.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 namespace Foam
44 {
45 
46 /*---------------------------------------------------------------------------*\
47  Class triSurfaceExtrude2DEdges Declaration
48 \*---------------------------------------------------------------------------*/
49 
51 {
52  // Private data
53  //- reference to triSurf
54  const triSurf& surf_;
55 
56  // Private member functions
57 
58  //- Disallow default bitwise copy construct
60 
61  //- Disallow default bitwise assignment
63 
64 public:
65 
66  // Constructors
67 
68  //- Construct from octree
70 
71  // Destructor
72 
74 
75 
76  // Member Functions
77 
78  //- extrudes edges into a triangulation
79  void extrudeSurface(triSurf&) const;
80 
81  const triSurf* extrudeSurface() const;
82 };
83 
84 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
85 
86 } // End namespace Foam
87 
88 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
89 
90 #endif
91 
92 // ************************************************************************* //
triSurf.H
boolList.H
Foam::triSurfaceExtrude2DEdges::triSurfaceExtrude2DEdges
triSurfaceExtrude2DEdges(const triSurfaceExtrude2DEdges &)
Disallow default bitwise copy construct.
Foam::triSurfaceExtrude2DEdges::extrudeSurface
const triSurf * extrudeSurface() const
Definition: triSurfaceExtrude2DEdges.C:98
Foam::triSurfaceExtrude2DEdges::~triSurfaceExtrude2DEdges
~triSurfaceExtrude2DEdges()
Definition: triSurfaceExtrude2DEdges.C:44
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::triSurfaceExtrude2DEdges::surf_
const triSurf & surf_
reference to triSurf
Definition: triSurfaceExtrude2DEdges.H:53
Foam::triSurfaceExtrude2DEdges::operator=
void operator=(const triSurfaceExtrude2DEdges &)
Disallow default bitwise assignment.
Foam::surface
Definition: surface.H:55
Foam::triSurf
Definition: triSurf.H:59
Foam::triSurfaceExtrude2DEdges
Definition: triSurfaceExtrude2DEdges.H:49