/usr/include/freefoam/OpenFOAM/lineI.H is in libfreefoam-dev 0.1.0+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 | /*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include <OpenFOAM/IOstreams.H>
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class Point, class PointRef>
inline line<Point, PointRef>::line(const Point& start, const Point& end)
:
a_(start),
b_(end)
{}
template<class Point, class PointRef>
inline line<Point, PointRef>::line(Istream& is)
{
// Read beginning of line point pair
is.readBegin("line");
is >> a_ >> b_;
// Read end of line point pair
is.readEnd("line");
// Check state of Istream
is.check("line::line(Istream& is)");
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template<class Point, class PointRef>
inline PointRef line<Point, PointRef>::start() const
{
return a_;
}
template<class Point, class PointRef>
inline PointRef line<Point, PointRef>::end() const
{
return b_;
}
template<class Point, class PointRef>
inline Point line<Point, PointRef>::centre() const
{
return 0.5*(a_ + b_);
}
template<class Point, class PointRef>
inline scalar line<Point, PointRef>::mag() const
{
return ::Foam::mag(vec());
}
template<class Point, class PointRef>
inline Point line<Point, PointRef>::vec() const
{
return b_ - a_;
}
template<class Point, class PointRef>
PointHit<Point> line<Point, PointRef>::nearestDist(const Point& p) const
{
Point v = vec();
Point w(p - a_);
scalar c1 = v & w;
if (c1 <= 0)
{
return PointHit<Point>(false, a_, Foam::mag(p - a_), true);
}
scalar c2 = v & v;
if (c2 <= c1)
{
return PointHit<Point>(false, b_, Foam::mag(p - b_), true);
}
scalar b = c1/c2;
Point pb(a_ + b*v);
return PointHit<Point>(true, pb, Foam::mag(p - pb), false);
}
template<class Point, class PointRef>
scalar line<Point, PointRef>::nearestDist
(
const line<Point, const Point&>& edge,
Point& thisPt,
Point& edgePt
) const
{
// From Mathworld Line-Line distance/(Gellert et al. 1989, p. 538).
Point a(end() - start());
Point b(edge.end() - edge.start());
Point c(edge.start() - start());
Point crossab = a ^ b;
scalar magCrossSqr = magSqr(crossab);
if (magCrossSqr > VSMALL)
{
scalar s = ((c ^ b) & crossab)/magCrossSqr;
scalar t = ((c ^ a) & crossab)/magCrossSqr;
// Check for end points outside of range 0..1
if (s >= 0 && s <= 1 && t >= 0 && t <= 1)
{
// Both inside range 0..1
thisPt = start() + a*s;
edgePt = edge.start() + b*t;
}
else
{
// Do brute force. Distance of everything to everything.
// Can quite possibly be improved!
// From edge endpoints to *this
PointHit<Point> this0(nearestDist(edge.start()));
PointHit<Point> this1(nearestDist(edge.end()));
scalar thisDist = min(this0.distance(), this1.distance());
// From *this to edge
PointHit<Point> edge0(edge.nearestDist(start()));
PointHit<Point> edge1(edge.nearestDist(end()));
scalar edgeDist = min(edge0.distance(), edge1.distance());
if (thisDist < edgeDist)
{
if (this0.distance() < this1.distance())
{
thisPt = this0.rawPoint();
edgePt = edge.start();
}
else
{
thisPt = this1.rawPoint();
edgePt = edge.end();
}
}
else
{
if (edge0.distance() < edge1.distance())
{
thisPt = start();
edgePt = edge0.rawPoint();
}
else
{
thisPt = end();
edgePt = edge1.rawPoint();
}
}
}
}
else
{
// Parallel lines. Find overlap of both lines by projecting onto
// direction vector (now equal for both lines).
scalar edge0 = edge.start() & a;
scalar edge1 = edge.end() & a;
bool edgeOrder = edge0 < edge1;
scalar minEdge = (edgeOrder ? edge0 : edge1);
scalar maxEdge = (edgeOrder ? edge1 : edge0);
const Point& minEdgePt = (edgeOrder ? edge.start() : edge.end());
const Point& maxEdgePt = (edgeOrder ? edge.end() : edge.start());
scalar this0 = start() & a;
scalar this1 = end() & a;
bool thisOrder = this0 < this1;
scalar minThis = min(this0, this1);
scalar maxThis = max(this1, this0);
const Point& minThisPt = (thisOrder ? start() : end());
const Point& maxThisPt = (thisOrder ? end() : start());
if (maxEdge < minThis)
{
// edge completely below *this
edgePt = maxEdgePt;
thisPt = minThisPt;
}
else if (maxEdge < maxThis)
{
// maxEdge inside interval of *this
edgePt = maxEdgePt;
thisPt = nearestDist(edgePt).rawPoint();
}
else
{
// maxEdge outside. Check if minEdge inside.
if (minEdge < minThis)
{
// Edge completely envelops this. Take any this point and
// determine nearest on edge.
thisPt = minThisPt;
edgePt = edge.nearestDist(thisPt).rawPoint();
}
else if (minEdge < maxThis)
{
// minEdge inside this interval.
edgePt = minEdgePt;
thisPt = nearestDist(edgePt).rawPoint();
}
else
{
// minEdge outside this interval
edgePt = minEdgePt;
thisPt = maxThisPt;
}
}
}
return Foam::mag(thisPt - edgePt);
}
// * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * * //
template<class Point, class PointRef>
inline Istream& operator>>(Istream& is, line<Point, PointRef>& l)
{
// Read beginning of line point pair
is.readBegin("line");
is >> l.a_ >> l.b_;
// Read end of line point pair
is.readEnd("line");
// Check state of Ostream
is.check("Istream& operator>>(Istream&, line&)");
return is;
}
template<class Point, class PointRef>
inline Ostream& operator<<(Ostream& os, const line<Point, PointRef>& l)
{
os << token::BEGIN_LIST << l.a_ << token::SPACE << l.b_ << token::END_LIST;
return os;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// ************************ vim: set sw=4 sts=4 et: ************************ //
|