Home
last modified time | relevance | path

Searched refs:hyperplane (Results 1 – 2 of 2) sorted by relevance

/external/eigen/Eigen/src/Geometry/
DParametrizedLine.h62 …E_FUNC explicit ParametrizedLine(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane);
99 …alar intersectionParameter(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const;
102 …E_FUNC Scalar intersection(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const;
105 …ctorType intersectionPoint(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const;
146 …entDim,_Options>::ParametrizedLine(const Hyperplane<_Scalar, _AmbientDim,OtherOptions>& hyperplane) in ParametrizedLine() argument
149 direction() = hyperplane.normal().unitOrthogonal(); in ParametrizedLine()
150 origin() = -hyperplane.normal()*hyperplane.offset(); in ParametrizedLine()
166 …ons>::intersectionParameter(const Hyperplane<_Scalar, _AmbientDim, OtherOptions>& hyperplane) const in intersectionParameter() argument
168 return -(hyperplane.offset()+hyperplane.normal().dot(origin())) in intersectionParameter()
169 / hyperplane.normal().dot(direction()); in intersectionParameter()
[all …]
/external/eigen/test/
Dgeo_hyperplane.cpp16 template<typename HyperplaneType> void hyperplane(const HyperplaneType& _plane) in hyperplane() function
187 CALL_SUBTEST_1( hyperplane(Hyperplane<float,2>()) ); in test_geo_hyperplane()
188 CALL_SUBTEST_2( hyperplane(Hyperplane<float,3>()) ); in test_geo_hyperplane()
189 CALL_SUBTEST_2( hyperplane(Hyperplane<float,3,DontAlign>()) ); in test_geo_hyperplane()
191 CALL_SUBTEST_3( hyperplane(Hyperplane<double,4>()) ); in test_geo_hyperplane()
192 CALL_SUBTEST_4( hyperplane(Hyperplane<std::complex<double>,5>()) ); in test_geo_hyperplane()