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

  /external/eigen/Eigen/src/Eigen2Support/Geometry/
AlignedBox.h 17 * \class AlignedBox
27 class AlignedBox
37 inline AlignedBox()
41 inline explicit AlignedBox(int _dim) : m_min(_dim), m_max(_dim)
45 inline AlignedBox(const VectorType& _min, const VectorType& _max) : m_min(_min), m_max(_max) {}
48 inline explicit AlignedBox(const VectorType& p) : m_min(p), m_max(p) {}
50 ~AlignedBox() {}
79 inline bool contains(const AlignedBox& b) const
83 inline AlignedBox& extend(const VectorType& p)
87 inline AlignedBox& extend(const AlignedBox& b
    [all...]
All.h 18 #include "AlignedBox.h"
55 #define AlignedBox eigen2_AlignedBox
71 #include "AlignedBox.h"
110 #undef AlignedBox
  /external/eigen/Eigen/src/Geometry/
AlignedBox.h 18 * \class AlignedBox
28 class AlignedBox
59 inline AlignedBox()
63 inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim)
68 inline AlignedBox(const OtherVectorType1& _min, const OtherVectorType2& _max) : m_min(_min), m_max(_max) {}
72 inline explicit AlignedBox(const MatrixBase<Derived>& a_p)
79 ~AlignedBox() {}
185 inline bool contains(const AlignedBox& b) const
190 inline AlignedBox& extend(const MatrixBase<Derived>& a_p)
199 inline AlignedBox& extend(const AlignedBox& b
    [all...]
  /external/eigen/test/eigen2/
eigen2_alignedbox.cpp 15 template<typename BoxType> void alignedbox(const BoxType& _box) function
18 AlignedBox.h
47 AlignedBox<OtherScalar,Dim> hp1f = b0.template cast<OtherScalar>();
49 AlignedBox<Scalar,Dim> hp1d = b0.template cast<Scalar>();
56 CALL_SUBTEST_1( alignedbox(AlignedBox<float,2>()) );
57 CALL_SUBTEST_2( alignedbox(AlignedBox<float,3>()) );
58 CALL_SUBTEST_3( alignedbox(AlignedBox<double,4>()) )
    [all...]
  /external/eigen/unsupported/test/
BVH.cpp 17 template<typename Scalar, int Dim> AlignedBox<Scalar, Dim> bounding_box(const Matrix<Scalar, Dim, 1> &v) { return AlignedBox<Scalar, Dim>(v); }
35 template<int Dim> AlignedBox<double, Dim> bounding_box(const Ball<Dim> &b)
36 { return AlignedBox<double, Dim>(b.center.array() - b.radius, b.center.array() + b.radius); }
46 typedef AlignedBox<double, Dim> BoxType;
99 typedef AlignedBox<double, Dim> BoxType;
  /external/eigen/unsupported/doc/examples/
BVH_Example.cpp 6 typedef AlignedBox<double, 2> Box2d;
  /external/eigen/test/
geo_alignedbox.cpp 22 template<typename BoxType> void alignedbox(const BoxType& _box) function
25 AlignedBox.h
96 AlignedBox<OtherScalar,Dim> hp1f = b0.template cast<OtherScalar>();
98 AlignedBox<Scalar,Dim> hp1d = b0.template cast<Scalar>();
160 CALL_SUBTEST_1( alignedbox(AlignedBox2f()) );
163 CALL_SUBTEST_3( alignedbox(AlignedBox3f()) );
166 CALL_SUBTEST_5( alignedbox(AlignedBox4d()) );
169 CALL_SUBTEST_7( alignedbox(AlignedBox1d()) );
172 CALL_SUBTEST_9( alignedbox(AlignedBox1i()) );
173 CALL_SUBTEST_10( alignedbox(AlignedBox2i()) )
    [all...]
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 55 * \brief A simple bounding volume hierarchy based on AlignedBox
60 * be defined and return an AlignedBox<_Scalar, _Dim> or bounding boxes must be provided to the tree initializer.
74 typedef AlignedBox<Scalar, Dim> Volume;

Completed in 139 milliseconds