polyLine.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 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 Class
25  Foam::polyLine
26 
27 Description
28  A series of straight line segments, which can also be interpreted as
29  a series of control points for splines, etc.
30 
31  A future implementation could also handle a closed polyLine.
32 
33 SourceFiles
34  polyLine.C
35 
36 \*---------------------------------------------------------------------------*/
37 
38 #ifndef polyLine_H
39 #define polyLine_H
40 
41 #include "pointField.H"
42 #include "scalarList.H"
43 
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 
46 namespace Foam
47 {
48 
49 /*---------------------------------------------------------------------------*\
50  Class polyLine Declaration
51 \*---------------------------------------------------------------------------*/
52 
53 
54 class polyLine
55 {
56  // Private Member Functions
57 
58  //- Disallow default bitwise copy construct
59  polyLine(const polyLine&);
60 
61  //- Disallow default bitwise assignment
62  void operator=(const polyLine&);
63 
64 
65 protected:
66 
67  // Protected data
68 
69  //- The control points or ends of each segments
71 
72  //- The real line length
73  scalar lineLength_;
74 
75  //- The rational (0-1) cumulative parameter value for each point
77 
78 
79  // Protected Member Functions
80 
81  //- Precalculate the rational cumulative parameter value
82  // and the line-length
83  void calcParam();
84 
85  //- Return the line segment and the local parameter [0..1]
86  // corresponding to the global lambda [0..1]
87  label localParameter(scalar& lambda) const;
88 
89 
90 public:
91 
92  // Constructors
93 
94  //- Construct from components
95  polyLine
96  (
97  const pointField&,
98  const bool notImplementedClosed = false
99  );
100 
101 
102  // Member Functions
103 
104  //- Return const-access to the control-points
105  const pointField& points() const;
106 
107  //- Return the number of line segments
108  label nSegments() const;
109 
110  //- Return the point position corresponding to the curve parameter
111  // 0 <= lambda <= 1
112  point position(const scalar) const;
113 
114  //- Return the point position corresponding to the local parameter
115  // 0 <= lambda <= 1 on the given segment
116  point position(const label segment, const scalar) const;
117 
118  //- Return the length of the curve
119  scalar length() const;
120 };
121 
122 
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 
125 } // End namespace Foam
126 
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 
129 #endif
130 
131 // ************************************************************************* //
scalar lineLength_
The real line length.
Definition: polyLine.H:72
scalar length() const
Return the length of the curve.
Definition: polyLine.C:172
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
label nSegments() const
Return the number of line segments.
Definition: polyLine.C:79
const pointField & points() const
Return const-access to the control-points.
Definition: polyLine.C:73
pointField points_
The control points or ends of each segments.
Definition: polyLine.H:69
An ordered pair of two objects of type <T> with first() and second() elements.
Definition: contiguous.H:49
void calcParam()
Precalculate the rational cumulative parameter value.
Definition: polyLine.C:30
A series of straight line segments, which can also be interpreted as a series of control points for s...
Definition: polyLine.H:53
point position(const scalar) const
Return the point position corresponding to the curve parameter.
Definition: polyLine.C:118
scalarList param_
The rational (0-1) cumulative parameter value for each point.
Definition: polyLine.H:75
label localParameter(scalar &lambda) const
Return the line segment and the local parameter [0..1].
Definition: polyLine.C:85
dimensionedScalar lambda(laminarTransport.lookup("lambda"))
Namespace for OpenFOAM.