Moving cfMesh into place. Updated contibutors list
[foam-extend-3.2.git] / src / mesh / cfMesh / meshLibrary / utilities / meshes / polyMeshGen2DEngine / polyMeshGen2DEngineI.H
blob04bbfbbff2754854cf955af6e5f16107a7a2bbb5
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     polyMeshGen2DEngine
27 Description
28     A simple engine which provides topological information of a 2D mesh
29     and allows for maintaining consistency
31 SourceFiles
32     polyMeshGen2DEngine.C
34 \*---------------------------------------------------------------------------*/
36 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
38 #include "polyMeshGen2DEngine.H"
39 #include "boolList.H"
40 #include "labelList.H"
41 #include "boundBox.H"
42 #include "demandDrivenData.H"
44 namespace Foam
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 inline const boolList& polyMeshGen2DEngine::activeFace() const
51     if( !activeFacePtr_ )
52         findActiveFaces();
54     return *activeFacePtr_;
57 inline const labelList& polyMeshGen2DEngine::activeFaceLabels() const
59     if( !activeFaceLabelsPtr_ )
60         findActiveFaceLabels();
62     return *activeFaceLabelsPtr_;
65 inline const boolList& polyMeshGen2DEngine::zMinPoints() const
67     if( !zMinPointPtr_ )
68         findZMinPoints();
70     return *zMinPointPtr_;
73 inline const labelList& polyMeshGen2DEngine::zMinPointLabels() const
75     if( !zMinPointLabelsPtr_ )
76         findZMinPointLabels();
78     return *zMinPointLabelsPtr_;
81 inline const labelList& polyMeshGen2DEngine::zMinToZMax() const
83     if( !zMinToZMaxPtr_ )
84         findZMinOffsetPoints();
86     return *zMinToZMaxPtr_;
89 inline const boolList& polyMeshGen2DEngine::zMaxPoints() const
91     if( !zMaxPointPtr_ )
92         findZMaxPoints();
94     return *zMaxPointPtr_;
97 inline const labelList& polyMeshGen2DEngine::zMaxPointLabels() const
99     if( !zMaxPointLabelsPtr_ )
100         findZMaxPointLabels();
102     return *zMaxPointLabelsPtr_;
105 inline const labelList& polyMeshGen2DEngine::zMaxToZMin() const
107     if( !zMaxToZMinPtr_ )
108         findZMaxOffsetPoints();
110     return *zMaxToZMinPtr_;
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 } // End namespace Foam
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //