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

Method FindPointsWithinRadius

Common/DataModel/vtkKdTree.cxx:2390–2395  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

2388
2389//------------------------------------------------------------------------------
2390void vtkKdTree::FindPointsWithinRadius(double R, const double x[3], vtkIdList* result)
2391{
2392 result->Reset();
2393 // don't forget to square the radius
2394 this->FindPointsWithinRadius(this->Top, R * R, x, result);
2395}
2396
2397//------------------------------------------------------------------------------
2398void vtkKdTree::FindPointsWithinRadius(

Callers 15

MakeBondsMethod · 0.45
FindCellMethod · 0.45
operator()Method · 0.45
MergePointMethod · 0.45
TimePointLocatorsFunction · 0.45
ComparePointLocatorsFunction · 0.45
TestKdTreeFunctionsFunction · 0.45
ComputeBondsMethod · 0.45
operator()Method · 0.45
ClassifyPointsMethod · 0.45
TestOutputFunction · 0.45

Calls 5

AddAllPointsInRegionMethod · 0.95
InsertNextIdMethod · 0.80
ResetMethod · 0.45
GetBoundsMethod · 0.45
GetNumberOfPointsMethod · 0.45

Tested by 5

ComparePointLocatorsFunction · 0.36
TestKdTreeFunctionsFunction · 0.36
operator()Method · 0.36
TestOutputFunction · 0.36
TestPoissonDiskSamplerFunction · 0.36