Home
last modified time | relevance | path

Searched refs:AmbientDimAtCompileTime (Results 1 – 12 of 12) sorted by relevance

/external/eigen/Eigen/src/Geometry/
DHyperplane.h39 AmbientDimAtCompileTime = _AmbientDim, enumerator
45 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
46 typedef Matrix<Scalar,Index(AmbientDimAtCompileTime)==Dynamic
48 : Index(AmbientDimAtCompileTime)+1,1,Options> Coefficients;
49 typedef Block<Coefficients,AmbientDimAtCompileTime,1> NormalReturnType;
50 typedef const Block<const Coefficients,AmbientDimAtCompileTime,1> ConstNormalReturnType;
56 Hyperplane(const Hyperplane<Scalar,AmbientDimAtCompileTime,OtherOptions>& other) in Hyperplane() argument
113 explicit Hyperplane(const ParametrizedLine<Scalar, AmbientDimAtCompileTime>& parametrized) in Hyperplane()
122 …inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_coeffs.size()-1 : Index(Amb… in dim()
228 inline Hyperplane& transform(const Transform<Scalar,AmbientDimAtCompileTime,Affine,TrOptions>& t,
[all …]
DParametrizedLine.h35 AmbientDimAtCompileTime = _AmbientDim, enumerator
41 typedef Matrix<Scalar,AmbientDimAtCompileTime,1,Options> VectorType;
47 ParametrizedLine(const ParametrizedLine<Scalar,AmbientDimAtCompileTime,OtherOptions>& other) in ParametrizedLine() argument
114 ParametrizedLine<NewScalarType,AmbientDimAtCompileTime,Options> >::type cast() const in cast()
117 ParametrizedLine<NewScalarType,AmbientDimAtCompileTime,Options> >::type(*this); in cast()
122 …inline explicit ParametrizedLine(const ParametrizedLine<OtherScalarType,AmbientDimAtCompileTime,Ot… in ParametrizedLine() argument
DAlignedBox.h32 enum { AmbientDimAtCompileTime = _AmbientDim }; enumerator
38 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
60 { if (AmbientDimAtCompileTime!=Dynamic) setEmpty(); } in AlignedBox()
82 …inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size()-1 : Index(Ambien… in dim()
267 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type cast() const in cast()
270 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type(*this); in cast()
275 inline explicit AlignedBox(const AlignedBox<OtherScalarType,AmbientDimAtCompileTime>& other) in AlignedBox()
/external/eigen/Eigen/src/Eigen2Support/Geometry/
DHyperplane.h37 enum { AmbientDimAtCompileTime = _AmbientDim }; enumerator
40 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
41 typedef Matrix<Scalar,int(AmbientDimAtCompileTime)==Dynamic
43 : int(AmbientDimAtCompileTime)+1,1> Coefficients;
44 typedef Block<Coefficients,AmbientDimAtCompileTime,1> NormalReturnType;
102 explicit Hyperplane(const ParametrizedLine<Scalar, AmbientDimAtCompileTime>& parametrized) in Hyperplane()
111 …nline int dim() const { return int(AmbientDimAtCompileTime)==Dynamic ? m_coeffs.size()-1 : int(Amb… in dim()
216 inline Hyperplane& transform(const Transform<Scalar,AmbientDimAtCompileTime>& t,
231 Hyperplane<NewScalarType,AmbientDimAtCompileTime> >::type cast() const in cast()
234 Hyperplane<NewScalarType,AmbientDimAtCompileTime> >::type(*this); in cast()
[all …]
DAlignedBox.h31 enum { AmbientDimAtCompileTime = _AmbientDim }; enumerator
34 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
38 { if (AmbientDimAtCompileTime!=Dynamic) setNull(); } in AlignedBox()
53 …inline int dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size()-1 : AmbientDimAtCo… in dim()
118 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type cast() const in cast()
121 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type(*this); in cast()
126 inline explicit AlignedBox(const AlignedBox<OtherScalarType,AmbientDimAtCompileTime>& other) in AlignedBox()
DParametrizedLine.h33 enum { AmbientDimAtCompileTime = _AmbientDim }; enumerator
36 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
94 ParametrizedLine<NewScalarType,AmbientDimAtCompileTime> >::type cast() const in cast()
97 ParametrizedLine<NewScalarType,AmbientDimAtCompileTime> >::type(*this); in cast()
102 …inline explicit ParametrizedLine(const ParametrizedLine<OtherScalarType,AmbientDimAtCompileTime>& … in ParametrizedLine()
/external/eigen/test/eigen2/
Deigen2_hyperplane.cpp25 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime, 1> VectorType; in hyperplane()
26 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime, in hyperplane()
27 HyperplaneType::AmbientDimAtCompileTime> MatrixType; in hyperplane()
53 Scaling<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random()); in hyperplane()
54 Translation<Scalar,HyperplaneType::AmbientDimAtCompileTime> translation(VectorType::Random()); in hyperplane()
71 const int Dim = HyperplaneType::AmbientDimAtCompileTime; in hyperplane()
Deigen2_parametrizedline.cpp25 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime, 1> VectorType; in parametrizedline()
26 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime, in parametrizedline()
27 LineType::AmbientDimAtCompileTime> MatrixType; in parametrizedline()
46 const int Dim = LineType::AmbientDimAtCompileTime; in parametrizedline()
Deigen2_alignedbox.cpp24 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType; in alignedbox()
45 const int Dim = BoxType::AmbientDimAtCompileTime; in alignedbox()
/external/eigen/test/
Dgeo_parametrizedline.cpp25 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime, 1> VectorType; in parametrizedline()
26 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime, in parametrizedline()
27 LineType::AmbientDimAtCompileTime> MatrixType; in parametrizedline()
28 typedef Hyperplane<Scalar,LineType::AmbientDimAtCompileTime> HyperplaneType; in parametrizedline()
47 const int Dim = LineType::AmbientDimAtCompileTime; in parametrizedline()
Dgeo_hyperplane.cpp26 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime, 1> VectorType; in hyperplane()
27 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime, in hyperplane()
28 HyperplaneType::AmbientDimAtCompileTime> MatrixType; in hyperplane()
54 DiagonalMatrix<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random()); in hyperplane()
55 Translation<Scalar,HyperplaneType::AmbientDimAtCompileTime> translation(VectorType::Random()); in hyperplane()
72 const int Dim = HyperplaneType::AmbientDimAtCompileTime; in hyperplane()
Dgeo_alignedbox.cpp26 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType; in alignedbox()
75 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType; in alignedboxCastTests()
87 const int Dim = BoxType::AmbientDimAtCompileTime; in alignedboxCastTests()