Lines Matching refs:Dim
17 …e<typename Scalar, int Dim> AlignedBox<Scalar, Dim> bounding_box(const Matrix<Scalar, Dim, 1> &v) … in bounding_box() argument
22 template<int Dim>
25 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(double, Dim)
27 typedef Matrix<double, Dim, 1> VectorType;
35 template<int Dim> AlignedBox<double, Dim> bounding_box(const Ball<Dim> &b) in bounding_box()
36 { return AlignedBox<double, Dim>(b.center.array() - b.radius, b.center.array() + b.radius); } in bounding_box()
40 template<int Dim>
44 typedef Matrix<double, Dim, 1> VectorType;
45 typedef Ball<Dim> BallType;
46 typedef AlignedBox<double, Dim> BoxType;
92 template<int Dim>
95 typedef Matrix<double, Dim, 1> VectorType;
97 typedef Ball<Dim> BallType;
99 typedef AlignedBox<double, Dim> BoxType;
107 KdBVH<double, Dim, BallType> tree(b.begin(), b.end()); in testIntersect1()
110 BallPointStuff<Dim> i1(pt), i2(pt); in testIntersect1()
126 KdBVH<double, Dim, BallType> tree(b.begin(), b.end()); in testMinimize1()
129 BallPointStuff<Dim> i1(pt), i2(pt); in testMinimize1()
152 KdBVH<double, Dim, BallType> tree(b.begin(), b.end()); in testIntersect2()
153 KdBVH<double, Dim, VectorType> vTree(v.begin(), v.end()); in testIntersect2()
155 BallPointStuff<Dim> i1, i2; in testIntersect2()
177 KdBVH<double, Dim, BallType> tree(b.begin(), b.end()); in testMinimize2()
178 KdBVH<double, Dim, VectorType> vTree(v.begin(), v.end()); in testMinimize2()
180 BallPointStuff<Dim> i1, i2; in testMinimize2()