Ocean
Loading...
Searching...
No Matches
FiniteLine3.h
Go to the documentation of this file.
1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 */
7
8#ifndef META_OCEAN_MATH_FINITE_LINE_3_H
9#define META_OCEAN_MATH_FINITE_LINE_3_H
10
11#include "ocean/math/Math.h"
12#include "ocean/math/Line3.h"
13#include "ocean/math/Vector3.h"
14
15namespace Ocean
16{
17
18// Forward declaration.
19template <typename T> class FiniteLineT3;
20
21/**
22 * Definition of the FiniteLine3 object, depending on the OCEAN_MATH_USE_SINGLE_PRECISION either with single or double precision float data type.
23 * @see FiniteLineT3
24 * @ingroup math
25 */
27
28/**
29 * Instantiation of the LineT3 template class using a double precision float data type.
30 * @see FiniteLineT3
31 * @ingroup math
32 */
34
35/**
36 * Instantiation of the LineT3 template class using a single precision float data type.
37 * @see FiniteLineT3
38 * @ingroup math
39 */
41
42/**
43 * Definition of a typename alias for vectors with FiniteLineT3 objects.
44 * @see FiniteLineT3
45 * @ingroup math
46 */
47template <typename T>
48using FiniteLinesT3 = std::vector<FiniteLineT3<T>>;
49
50/**
51 * Definition of a vector holding FiniteLine3 objects.
52 * @see Line3
53 * @ingroup math
54 */
55using FiniteLines3 = std::vector<FiniteLine3>;
56
57/**
58 * This class implements an finite line in 3D space.
59 * The finite line object is invalid if both end points of the line object are identical.
60 * @tparam T Data type used to represent lines
61 * @see FiniteLine3, FiniteLineF3, FiniteLineD3, Line3, Line3
62 * @ingroup math
63 */
64template <typename T>
66{
67 public:
68
69 /**
70 * Definition of the used data type.
71 */
72 using Type = T;
73
74 public:
75
76 /**
77 * Creates a finite line with default parameters.
78 */
79 FiniteLineT3() = default;
80
81 /**
82 * Creates a finite line defined by two end points of the line.
83 * @param point0 First end point of the line
84 * @param point1 Second end point of the line, must be different from point0 to create a valid line, otherwise the line is invalid
85 */
87
88 /**
89 * Copies a line with different data type than T.
90 * @param line The line to copy
91 * @tparam U The data type of the second line
92 */
93 template <typename U>
94 explicit inline FiniteLineT3(const FiniteLineT3<U>& line);
95
96 /**
97 * Returns the first end point of the line.
98 * @return First end point of the line
99 */
100 inline const VectorT3<T>& point0() const;
101
102 /**
103 * Returns the second end point of the line.
104 * @return Second end point of the line
105 */
106 inline const VectorT3<T>& point1() const;
107
108 /**
109 * Returns the first or second end point of the line.
110 * @param index The index of the point to be returned, with range [0, 1]
111 * @return First or second end point of the line
112 */
113 inline const VectorT3<T>& point(const unsigned int index) const;
114
115 /**
116 * Returns the midpoint of the line.
117 * @return Midpoint point of the line
118 */
119 inline VectorT3<T> midpoint() const;
120
121 /**
122 * Returns the direction of the line: normalize(point1() - point0())
123 * @return Direction vector with unit length, a zero vector if the line is invalid
124 * @see isValid().
125 */
126 inline const VectorT3<T>& direction() const;
127
128 /**
129 * Returns the squared length of the finite line.
130 * @return Squared distance between the end points of the line
131 */
132 inline T sqrLength() const;
133
134 /**
135 * Returns the length of the finite line.
136 * @return Distance between the end points of the line
137 */
138 inline T length() const;
139
140 /**
141 * Returns whether a given point is part of the finite line.
142 * @param point The point to check
143 * @return True, if so
144 */
145 inline bool isOnLine(const VectorT3<T>& point) const;
146
147 /**
148 * Returns the distance between the line and a given point.
149 * This function needs a unit vector as direction!
150 * @param point The point to return the distance for
151 * @return Distance between point and line
152 */
153 inline T distance(const VectorT3<T>& point) const;
154
155 /**
156 * Returns the square distance between the line and a given point.
157 * @param point The point to return the distance for
158 * @return Square distance between point and line
159 */
160 inline T sqrDistance(const VectorT3<T>& point) const;
161
162 /**
163 * Returns the point on this line nearest to an arbitrary given point.
164 * This function needs a unit vector as direction!
165 * @param point Arbitrary point outside the line
166 * @return Nearest point on the line
167 */
169
170 /**
171 * Returns the intersection point of two finite lines.
172 * @param right The right line for intersection calculation, must be valid
173 * @param point Resulting intersection point, if any
174 * @return True, if both lines have a common intersection point
175 */
176 inline bool intersection(const FiniteLineT3<T>& right, VectorT3<T>& point) const;
177
178 /**
179 * Returns whether two lines are parallel up to a small epsilon.
180 * @param right Second line
181 * @return True, if so
182 */
183 inline bool isParallel(const FiniteLineT3<T>& right) const;
184
185 /**
186 * Returns whether this line has valid parameters.
187 * @return True, if so
188 */
189 inline bool isValid() const;
190
191 /**
192 * Returns whether two line are identical up to a small epsilon.
193 * Two finite lines are identical if both lines have the same endpoint (independent of the order of the end points).
194 * @param right The right line
195 * @return True, if so
196 */
197 inline bool operator==(const FiniteLineT3<T>& right) const;
198
199 /**
200 * Returns whether two line are identical up to a small epsilon.
201 * @param right The right line
202 * @return True, if so
203 */
204 inline bool operator!=(const FiniteLineT3<T>& right) const;
205
206 /**
207 * Returns whether this line is valid.
208 * @return True, if so
209 */
210 explicit inline operator bool() const;
211
212 protected:
213
214 /// First end point of the line.
216
217 /// Second end point of the line.
219
220 /// Direction of the line with unit length, if the object holds valid parameters.
222};
223
224template <typename T>
226 point0_(point0),
227 point1_(point1),
228 direction_((point1 - point0).normalizedOrZero())
229{
230 // nothing to do here
231}
232
233template <typename T>
234template <typename U>
236{
237 point0_ = VectorT3<T>(line.point0_);
238 point1_ = VectorT3<T>(line.point1_);
239 direction_ = VectorT3<T>(line.direction_);
240}
241
242template <typename T>
244{
245 return point0_;
246}
247
248template <typename T>
250{
251 return point1_;
252}
253
254template <typename T>
255inline const VectorT3<T>& FiniteLineT3<T>::point(const unsigned int index) const
256{
257 ocean_assert(index <= 1u);
258
259 if (index == 0u)
260 {
261 return point0_;
262 }
263 else
264 {
265 return point1_;
266 }
267}
268
269template <typename T>
271{
272 return (point0_ + point1_) * T(0.5);
273}
274
275template <typename T>
277{
278 return direction_;
279}
280
281template <typename T>
283{
284 return (point1_ - point0_).sqr();
285}
286
287template <typename T>
289{
290 return (point1_ - point0_).length();
291}
292
293template <typename T>
294inline bool FiniteLineT3<T>::isOnLine(const VectorT3<T>& point) const
295{
296 ocean_assert(isValid());
297
299}
300
301template <typename T>
302inline T FiniteLineT3<T>::distance(const VectorT3<T>& point) const
303{
304 ocean_assert(isValid());
305
306 return NumericT<T>::sqrt(sqrDistance(point));
307}
308
309template <typename T>
310inline T FiniteLineT3<T>::sqrDistance(const VectorT3<T>& point) const
311{
312 ocean_assert(isValid());
313
314 return nearestPoint(point).sqrDistance(point);
315}
316
317template <typename T>
319{
320 ocean_assert(isValid());
321
322 const VectorT3<T> lineOffset(point1_ - point0_);
323 const VectorT3<T> pointOffset(point - point0_);
324
325 const Scalar dotProduct = lineOffset * pointOffset;
326
327 // the projected point does not lie on the finite line (before the first end point)
328 if (dotProduct <= 0)
329 {
330 return point0_;
331 }
332
333 // the projected point does not lie on the finite line (behind the second end point)
334 if (dotProduct >= lineOffset.sqr())
335 {
336 return point1_;
337 }
338
339 // the projected point lies on the finite line
340 return point0_ + direction_ * (pointOffset * direction_);
341}
342
343template <typename T>
344inline bool FiniteLineT3<T>::intersection(const FiniteLineT3<T>& right, VectorT3<T>& point) const
345{
346 ocean_assert(isValid());
347 ocean_assert(right.isValid());
348
349 VectorT3<T> intersectionPoint;
350
351 if (!LineT3<T>(point0_, direction_).nearestPoint(LineT3<T>(right.point0_, right.direction_), intersectionPoint))
352 {
353 return false;
354 }
355
356 return isOnLine(intersectionPoint) && right.isOnLine(intersectionPoint);
357}
358
359template <typename T>
360inline bool FiniteLineT3<T>::isParallel(const FiniteLineT3<T>& right) const
361{
362 ocean_assert(isValid() && right.isValid());
363
364 return direction_ == right.direction_ || direction_ == -right.direction_;
365}
366
367template <typename T>
368inline bool FiniteLineT3<T>::isValid() const
369{
370 return !direction_.isNull();
371}
372
373template <typename T>
375{
376 return (point0_ == right.point0_ && point1_ == right.point1_)
377 || (point0_ == right.point1_ && point1_ == right.point0_);
378}
379
380template <typename T>
381inline bool FiniteLineT3<T>::operator!=(const FiniteLineT3<T>& right) const
382{
383 return !(*this == right);
384}
385
386template <typename T>
387inline FiniteLineT3<T>::operator bool() const
388{
389 return isValid();
390}
391
392}
393
394#endif // META_OCEAN_MATH_FINITE_LINE_3_H
This class implements an finite line in 3D space.
Definition FiniteLine3.h:66
bool operator!=(const FiniteLineT3< T > &right) const
Returns whether two line are identical up to a small epsilon.
Definition FiniteLine3.h:381
T length() const
Returns the length of the finite line.
Definition FiniteLine3.h:288
VectorT3< T > midpoint() const
Returns the midpoint of the line.
Definition FiniteLine3.h:270
const VectorT3< T > & point1() const
Returns the second end point of the line.
Definition FiniteLine3.h:249
T Type
Definition of the used data type.
Definition FiniteLine3.h:72
VectorT3< T > point1_
Second end point of the line.
Definition FiniteLine3.h:218
bool intersection(const FiniteLineT3< T > &right, VectorT3< T > &point) const
Returns the intersection point of two finite lines.
Definition FiniteLine3.h:344
bool isParallel(const FiniteLineT3< T > &right) const
Returns whether two lines are parallel up to a small epsilon.
Definition FiniteLine3.h:360
bool operator==(const FiniteLineT3< T > &right) const
Returns whether two line are identical up to a small epsilon.
Definition FiniteLine3.h:374
bool isValid() const
Returns whether this line has valid parameters.
Definition FiniteLine3.h:368
VectorT3< T > nearestPoint(const VectorT3< T > &point) const
Returns the point on this line nearest to an arbitrary given point.
Definition FiniteLine3.h:318
T sqrDistance(const VectorT3< T > &point) const
Returns the square distance between the line and a given point.
Definition FiniteLine3.h:310
bool isOnLine(const VectorT3< T > &point) const
Returns whether a given point is part of the finite line.
Definition FiniteLine3.h:294
const VectorT3< T > & point(const unsigned int index) const
Returns the first or second end point of the line.
Definition FiniteLine3.h:255
const VectorT3< T > & direction() const
Returns the direction of the line: normalize(point1() - point0())
Definition FiniteLine3.h:276
FiniteLineT3()=default
Creates a finite line with default parameters.
T sqrLength() const
Returns the squared length of the finite line.
Definition FiniteLine3.h:282
VectorT3< T > direction_
Direction of the line with unit length, if the object holds valid parameters.
Definition FiniteLine3.h:221
const VectorT3< T > & point0() const
Returns the first end point of the line.
Definition FiniteLine3.h:243
T distance(const VectorT3< T > &point) const
Returns the distance between the line and a given point.
Definition FiniteLine3.h:302
VectorT3< T > point0_
First end point of the line.
Definition FiniteLine3.h:215
This class implements an infinite line in 3D space.
Definition Line3.h:68
static T sqrt(const T value)
Returns the square root of a given value.
Definition Numeric.h:1533
static constexpr bool isEqualEps(const T value)
Returns whether a value is smaller than or equal to a small epsilon.
Definition Numeric.h:2087
This class implements a vector with three elements.
Definition Vector3.h:97
T sqr() const
Returns the square of the vector length.
Definition Vector3.h:682
unsigned int sqrDistance(const char first, const char second)
Returns the square distance between two values.
Definition base/Utilities.h:1089
std::vector< FiniteLineT3< T > > FiniteLinesT3
Definition of a typename alias for vectors with FiniteLineT3 objects.
Definition FiniteLine3.h:48
float Scalar
Definition of a scalar type.
Definition Math.h:129
std::vector< FiniteLine3 > FiniteLines3
Definition of a vector holding FiniteLine3 objects.
Definition FiniteLine3.h:55
The namespace covering the entire Ocean framework.
Definition Accessor.h:15