11#ifndef EIGEN_HYPERPLANE_H
12#define EIGEN_HYPERPLANE_H
15#include "./InternalHeaderCheck.h"
36template <
typename Scalar_,
int AmbientDim_,
int Options_>
39 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(Scalar_,
41 enum { AmbientDimAtCompileTime = AmbientDim_, Options = Options_ };
42 typedef Scalar_ Scalar;
43 typedef typename NumTraits<Scalar>::Real RealScalar;
55 template <
int OtherOptions>
57 : m_coeffs(other.
coeffs()) {}
66 EIGEN_DEVICE_FUNC
inline Hyperplane(
const VectorType& n,
const VectorType& e) : m_coeffs(n.size() + 1) {
75 EIGEN_DEVICE_FUNC
inline Hyperplane(
const VectorType& n,
const Scalar& d) : m_coeffs(n.size() + 1) {
83 EIGEN_DEVICE_FUNC
static inline Hyperplane Through(
const VectorType& p0,
const VectorType& p1) {
85 result.
normal() = (p1 - p0).unitOrthogonal();
93 EIGEN_DEVICE_FUNC
static inline Hyperplane Through(
const VectorType& p0,
const VectorType& p1,
const VectorType& p2) {
94 EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(VectorType, 3)
96 VectorType v0(p2 - p0), v1(p1 - p0);
97 result.
normal() = v0.cross(v1);
98 RealScalar norm = result.
normal().norm();
99 if (norm <= v0.norm() * v1.norm() * NumTraits<RealScalar>::epsilon()) {
101 m << v0.transpose(), v1.transpose();
116 normal() = parametrized.direction().unitOrthogonal();
124 return AmbientDimAtCompileTime ==
Dynamic ? m_coeffs.size() - 1 :
Index(AmbientDimAtCompileTime);
147 EIGEN_DEVICE_FUNC
inline ConstNormalReturnType
normal()
const {
148 return ConstNormalReturnType(m_coeffs, 0, 0,
dim(), 1);
154 EIGEN_DEVICE_FUNC
inline NormalReturnType
normal() {
return NormalReturnType(m_coeffs, 0, 0,
dim(), 1); }
159 EIGEN_DEVICE_FUNC
inline const Scalar&
offset()
const {
return m_coeffs.coeff(
dim()); }
163 EIGEN_DEVICE_FUNC
inline Scalar&
offset() {
return m_coeffs(
dim()); }
168 EIGEN_DEVICE_FUNC
inline const Coefficients&
coeffs()
const {
return m_coeffs; }
173 EIGEN_DEVICE_FUNC
inline Coefficients&
coeffs() {
return m_coeffs; }
182 EIGEN_STATIC_ASSERT_VECTOR_SPECIFIC_SIZE(VectorType, 2)
186 if (internal::isMuchSmallerThan(det, Scalar(1))) {
188 if (numext::abs(
coeffs().coeff(1)) > numext::abs(
coeffs().coeff(0)))
193 Scalar invdet = Scalar(1) / det;
206 template <
typename XprType>
210 m_coeffs /=
normal().norm();
214 eigen_assert(0 &&
"invalid traits value in Hyperplane::transform()");
226 template <
int TrOptions>
239 template <
typename NewScalarType>
240 EIGEN_DEVICE_FUNC
inline
241 typename internal::cast_return_type<
Hyperplane,
245 typename internal::cast_return_type<
Hyperplane,
250 template <
typename OtherScalarType,
int OtherOptions>
260 template <
int OtherOptions>
263 const typename NumTraits<Scalar>::Real& prec = NumTraits<Scalar>::dummy_precision())
const {
264 return m_coeffs.isApprox(other.m_coeffs, prec);
268 Coefficients m_coeffs;
Expression of a fixed-size or dynamic-size block.
Definition Block.h:110
A hyperplane.
Definition Hyperplane.h:37
static Hyperplane Through(const VectorType &p0, const VectorType &p1)
Definition Hyperplane.h:83
Hyperplane & transform(const MatrixBase< XprType > &mat, TransformTraits traits=Affine)
Definition Hyperplane.h:207
VectorType intersection(const Hyperplane &other) const
Definition Hyperplane.h:181
ConstNormalReturnType normal() const
Definition Hyperplane.h:147
Scalar signedDistance(const VectorType &p) const
Definition Hyperplane.h:133
Hyperplane(const VectorType &n, const VectorType &e)
Definition Hyperplane.h:66
NormalReturnType normal()
Definition Hyperplane.h:154
Hyperplane()
Definition Hyperplane.h:53
const Coefficients & coeffs() const
Definition Hyperplane.h:168
Coefficients & coeffs()
Definition Hyperplane.h:173
internal::cast_return_type< Hyperplane, Hyperplane< NewScalarType, AmbientDimAtCompileTime, Options > >::type cast() const
Definition Hyperplane.h:243
Index dim() const
Definition Hyperplane.h:123
Scalar absDistance(const VectorType &p) const
Definition Hyperplane.h:138
static Hyperplane Through(const VectorType &p0, const VectorType &p1, const VectorType &p2)
Definition Hyperplane.h:93
const Scalar & offset() const
Definition Hyperplane.h:159
Hyperplane(const VectorType &n, const Scalar &d)
Definition Hyperplane.h:75
bool isApprox(const Hyperplane< Scalar, AmbientDimAtCompileTime, OtherOptions > &other, const typename NumTraits< Scalar >::Real &prec=NumTraits< Scalar >::dummy_precision()) const
Definition Hyperplane.h:261
Hyperplane(const Hyperplane< OtherScalarType, AmbientDimAtCompileTime, OtherOptions > &other)
Definition Hyperplane.h:251
void normalize(void)
Definition Hyperplane.h:128
Scalar & offset()
Definition Hyperplane.h:163
Hyperplane(Index _dim)
Definition Hyperplane.h:61
Hyperplane(const ParametrizedLine< Scalar, AmbientDimAtCompileTime > ¶metrized)
Definition Hyperplane.h:115
VectorType projection(const VectorType &p) const
Definition Hyperplane.h:142
Eigen::Index Index
Definition Hyperplane.h:44
Hyperplane & transform(const Transform< Scalar, AmbientDimAtCompileTime, Affine, TrOptions > &t, TransformTraits traits=Affine)
Definition Hyperplane.h:227
Two-sided Jacobi SVD decomposition of a rectangular matrix.
Definition JacobiSVD.h:500
Base class for all dense matrices, vectors, and expressions.
Definition MatrixBase.h:52
const Inverse< Derived > inverse() const
Definition InverseImpl.h:279
The matrix class, also used for vectors and row-vectors.
Definition Matrix.h:186
A parametrized line.
Definition ParametrizedLine.h:33
constexpr const Scalar & coeff(Index rowId, Index colId) const
Definition PlainObjectBase.h:172
const MatrixVType & matrixV() const
Definition SVDBase.h:189
TransformTraits
Definition Constants.h:453
@ ComputeFullV
Definition Constants.h:393
@ Affine
Definition Constants.h:458
@ Isometry
Definition Constants.h:455
Namespace containing all symbols from the Eigen library.
Definition B01_Experimental.dox:1
EIGEN_DEFAULT_DENSE_INDEX_TYPE Index
The Index type as used for the API.
Definition Meta.h:82
const int Dynamic
Definition Constants.h:25