HomeSort by relevance Sort by last modified time
    Searched defs:minimumOnObjectObject (Results 1 - 2 of 2) sorted by null

  /external/eigen/unsupported/doc/examples/
BVH_Example.cpp 22 double minimumOnObjectObject(const Vector2d &v1, const Vector2d &v2) { ++calls; return (v1 - v2).squaredNorm(); }
42 minDistSq = std::min(minDistSq, minimizer.minimumOnObjectObject(redPoints[i], bluePoints[j]));
  /external/eigen/unsupported/test/
BVH.cpp 82 double minimumOnObjectObject(const BallType &b1, const BallType &b2){ ++calls; return SQR((std::max)(0., (b1.center - b2.center).norm() - b1.radius - b2.radius)); }
84 double minimumOnObjectObject(const BallType &b, const VectorType &v){ ++calls; return SQR((std::max)(0., (b.center - v).norm() - b.radius)); }
186 m1 = (std::min)(m1, i1.minimumOnObjectObject(b[i], v[j]));

Completed in 1245 milliseconds