edgeMeshI.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM 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 OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
27 
29 :
30  fileFormats::edgeMeshFormatsCore(),
31  points_(em.points_),
32  edges_(em.edges_),
33  pointEdgesPtr_(NULL)
34 {}
35 
36 
37 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
38 
40 {
41  return points_;
42 }
43 
44 
46 {
47  return edges_;
48 }
49 
50 
52 {
53  if (pointEdgesPtr_.empty())
54  {
55  calcPointEdges();
56  }
57  return pointEdgesPtr_();
58 }
59 
60 
62 {
63  return points_;
64 }
65 
66 
68 {
69  return edges_;
70 }
71 
72 
73 // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * //
74 
76 {
77  points_ = rhs.points_;
78  edges_ = rhs.edges_;
79  pointEdgesPtr_.clear();
80 }
81 
82 
83 // ************************************************************************* //
edgeList & storedEdges()
Non-const access to the edges.
Definition: edgeMeshI.H:67
void operator=(const edgeMesh &)
Definition: edgeMeshI.H:75
pointField & storedPoints()
Non-const access to global points.
Definition: edgeMeshI.H:61
edgeMesh()
Construct null.
Definition: edgeMesh.C:123
const pointField & points() const
Return points.
Definition: edgeMeshI.H:39
Points connected by edges.
Definition: edgeMesh.H:69
const edgeList & edges() const
Return edges.
Definition: edgeMeshI.H:45
const labelListList & pointEdges() const
Return edges.
Definition: edgeMeshI.H:51