MCPcopy Create free account
hub / github.com/Kitware/VTK / FindClosestPointWithinRadius

Method FindClosestPointWithinRadius

Common/DataModel/vtkKdTreePointLocator.cxx:38–43  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

36
37//------------------------------------------------------------------------------
38vtkIdType vtkKdTreePointLocator::FindClosestPointWithinRadius(
39 double radius, const double x[3], double& dist2)
40{
41 this->BuildLocator();
42 return this->KdTree->FindClosestPointWithinRadius(radius, x, dist2);
43}
44
45//------------------------------------------------------------------------------
46void vtkKdTreePointLocator::FindClosestNPoints(int N, const double x[3], vtkIdList* result)

Callers

nothing calls this directly

Calls 1

BuildLocatorMethod · 0.95

Tested by

no test coverage detected