8#ifndef META_OCEAN_MATH_FINITE_LINE_3_H
9#define META_OCEAN_MATH_FINITE_LINE_3_H
19template <
typename T>
class FiniteLineT3;
210 explicit inline operator bool()
const;
228 direction_((point1 - point0).normalizedOrZero())
257 ocean_assert(index <= 1u);
272 return (point0_ + point1_) * T(0.5);
284 return (point1_ - point0_).
sqr();
290 return (point1_ - point0_).length();
296 ocean_assert(isValid());
304 ocean_assert(isValid());
312 ocean_assert(isValid());
314 return nearestPoint(point).sqrDistance(point);
320 ocean_assert(isValid());
325 const Scalar dotProduct = lineOffset * pointOffset;
334 if (dotProduct >= lineOffset.
sqr())
340 return point0_ + direction_ * (pointOffset * direction_);
346 ocean_assert(isValid());
356 return isOnLine(intersectionPoint) && right.
isOnLine(intersectionPoint);
362 ocean_assert(isValid() && right.
isValid());
370 return !direction_.isNull();
383 return !(*
this == right);
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