Lines Matching refs:Hyperplane
33 class Hyperplane
47 inline Hyperplane() {} in Hyperplane() function
51 inline explicit Hyperplane(int _dim) : m_coeffs(_dim+1) {} in Hyperplane() function
56 inline Hyperplane(const VectorType& n, const VectorType& e) in Hyperplane() function
67 inline Hyperplane(const VectorType& n, Scalar d) in Hyperplane() function
77 static inline Hyperplane Through(const VectorType& p0, const VectorType& p1) in Through()
79 Hyperplane result(p0.size()); in Through()
88 static inline Hyperplane Through(const VectorType& p0, const VectorType& p1, const VectorType& p2) in Through()
91 Hyperplane result(p0.size()); in Through()
102 explicit Hyperplane(const ParametrizedLine<Scalar, AmbientDimAtCompileTime>& parametrized) in Hyperplane() function
108 ~Hyperplane() {} in ~Hyperplane()
168 VectorType intersection(const Hyperplane& other) in intersection()
196 inline Hyperplane& transform(const MatrixBase<XprType>& mat, TransformTraits traits = Affine)
216 inline Hyperplane& transform(const Transform<Scalar,AmbientDimAtCompileTime>& t,
230 inline typename internal::cast_return_type<Hyperplane,
231 Hyperplane<NewScalarType,AmbientDimAtCompileTime> >::type cast() const in cast()
233 return typename internal::cast_return_type<Hyperplane, in cast()
234 Hyperplane<NewScalarType,AmbientDimAtCompileTime> >::type(*this); in cast()
239 inline explicit Hyperplane(const Hyperplane<OtherScalarType,AmbientDimAtCompileTime>& other) in Hyperplane() function
246 …bool isApprox(const Hyperplane& other, typename NumTraits<Scalar>::Real prec = precision<Scalar>()…