getclosest update for \the new definition of distance functor
This commit is contained in:
parent
3831d9716f
commit
7defccba1b
|
@ -95,7 +95,8 @@ public:
|
||||||
|
|
||||||
template <class OBJPOINTDISTFUNCTOR, class OBJMARKER>
|
template <class OBJPOINTDISTFUNCTOR, class OBJMARKER>
|
||||||
inline ObjPtr GetClosest(
|
inline ObjPtr GetClosest(
|
||||||
OBJPOINTDISTFUNCTOR & _getPointDistance, OBJMARKER & _marker, const CoordType & _p, const ScalarType & _maxDist,
|
OBJPOINTDISTFUNCTOR & _getPointDistance, OBJMARKER & _marker,
|
||||||
|
const typename OBJPOINTDISTFUNCTOR::QueryType & _p, const ScalarType & _maxDist,
|
||||||
ScalarType & _minDist, CoordType & _closestPt) {
|
ScalarType & _minDist, CoordType & _closestPt) {
|
||||||
(void)_marker;
|
(void)_marker;
|
||||||
return (AABBBinaryTreeClosest<TreeType>::Closest(this->tree, _getPointDistance, _p, _maxDist, _minDist, _closestPt));
|
return (AABBBinaryTreeClosest<TreeType>::Closest(this->tree, _getPointDistance, _p, _maxDist, _minDist, _closestPt));
|
||||||
|
|
Loading…
Reference in New Issue