HomeSort by relevance Sort by last modified time
    Searched refs:AmbientDimAtCompileTime (Results 1 - 12 of 12) sorted by null

  /external/eigen/Eigen/src/Geometry/
Hyperplane.h 39 AmbientDimAtCompileTime = _AmbientDim,
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)
113 explicit Hyperplane(const ParametrizedLine<Scalar, AmbientDimAtCompileTime>& parametrized)
122 inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_coeffs.size()-1 : Index(AmbientDimAtCompileTime); }
    [all...]
AlignedBox.h 32 enum { AmbientDimAtCompileTime = _AmbientDim };
38 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
60 { if (AmbientDimAtCompileTime!=Dynamic) setEmpty(); }
82 inline Index dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size()-1 : Index(AmbientDimAtCompileTime); }
267 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type cast() const
270 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type(*this);
275 inline explicit AlignedBox(const AlignedBox<OtherScalarType,AmbientDimAtCompileTime>& other)
ParametrizedLine.h 35 AmbientDimAtCompileTime = _AmbientDim,
41 typedef Matrix<Scalar,AmbientDimAtCompileTime,1,Options> VectorType;
47 ParametrizedLine(const ParametrizedLine<Scalar,AmbientDimAtCompileTime,OtherOptions>& other)
114 ParametrizedLine<NewScalarType,AmbientDimAtCompileTime,Options> >::type cast() const
117 ParametrizedLine<NewScalarType,AmbientDimAtCompileTime,Options> >::type(*this);
122 inline explicit ParametrizedLine(const ParametrizedLine<OtherScalarType,AmbientDimAtCompileTime,OtherOptions>& other)
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
AlignedBox.h 31 enum { AmbientDimAtCompileTime = _AmbientDim };
34 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
38 { if (AmbientDimAtCompileTime!=Dynamic) setNull(); }
53 inline int dim() const { return AmbientDimAtCompileTime==Dynamic ? m_min.size()-1 : AmbientDimAtCompileTime; }
118 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type cast() const
121 AlignedBox<NewScalarType,AmbientDimAtCompileTime> >::type(*this);
126 inline explicit AlignedBox(const AlignedBox<OtherScalarType,AmbientDimAtCompileTime>& other)
Hyperplane.h 37 enum { AmbientDimAtCompileTime = _AmbientDim };
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)
111 inline int dim() const { return int(AmbientDimAtCompileTime)==Dynamic ? m_coeffs.size()-1 : int(AmbientDimAtCompileTime); }
216 inline Hyperplane& transform(const Transform<Scalar,AmbientDimAtCompileTime>& t,
231 Hyperplane<NewScalarType,AmbientDimAtCompileTime> >::type cast() cons
    [all...]
ParametrizedLine.h 33 enum { AmbientDimAtCompileTime = _AmbientDim };
36 typedef Matrix<Scalar,AmbientDimAtCompileTime,1> VectorType;
94 ParametrizedLine<NewScalarType,AmbientDimAtCompileTime> >::type cast() const
97 ParametrizedLine<NewScalarType,AmbientDimAtCompileTime> >::type(*this);
102 inline explicit ParametrizedLine(const ParametrizedLine<OtherScalarType,AmbientDimAtCompileTime>& other)
  /external/eigen/test/eigen2/
eigen2_parametrizedline.cpp 25 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime, 1> VectorType;
26 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime,
27 LineType::AmbientDimAtCompileTime> MatrixType;
46 const int Dim = LineType::AmbientDimAtCompileTime;
eigen2_alignedbox.cpp 24 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType;
45 const int Dim = BoxType::AmbientDimAtCompileTime;
eigen2_hyperplane.cpp 25 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime, 1> VectorType;
26 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime,
27 HyperplaneType::AmbientDimAtCompileTime> MatrixType;
53 Scaling<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random());
54 Translation<Scalar,HyperplaneType::AmbientDimAtCompileTime> translation(VectorType::Random());
71 const int Dim = HyperplaneType::AmbientDimAtCompileTime;
  /external/eigen/test/
geo_parametrizedline.cpp 25 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime, 1> VectorType;
26 typedef Matrix<Scalar, LineType::AmbientDimAtCompileTime,
27 LineType::AmbientDimAtCompileTime> MatrixType;
28 typedef Hyperplane<Scalar,LineType::AmbientDimAtCompileTime> HyperplaneType;
47 const int Dim = LineType::AmbientDimAtCompileTime;
geo_hyperplane.cpp 26 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime, 1> VectorType;
27 typedef Matrix<Scalar, HyperplaneType::AmbientDimAtCompileTime,
28 HyperplaneType::AmbientDimAtCompileTime> MatrixType;
54 DiagonalMatrix<Scalar,HyperplaneType::AmbientDimAtCompileTime> scaling(VectorType::Random());
55 Translation<Scalar,HyperplaneType::AmbientDimAtCompileTime> translation(VectorType::Random());
72 const int Dim = HyperplaneType::AmbientDimAtCompileTime;
geo_alignedbox.cpp 26 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType;
75 typedef Matrix<Scalar, BoxType::AmbientDimAtCompileTime, 1> VectorType;
87 const int Dim = BoxType::AmbientDimAtCompileTime;

Completed in 451 milliseconds