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

Method FindPointsWithinRadius

Common/DataModel/vtkOctreePointLocator.cxx:676–683  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

674
675//------------------------------------------------------------------------------
676void vtkOctreePointLocator::FindPointsWithinRadius(
677 double radius, const double x[3], vtkIdList* result)
678{
679 result->Reset();
680 this->BuildLocator();
681 // don't forget to square the radius
682 this->FindPointsWithinRadius(this->Top, radius * radius, x, result);
683}
684
685//------------------------------------------------------------------------------
686void vtkOctreePointLocator::FindPointsWithinRadius(

Callers

nothing calls this directly

Calls 7

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

Tested by

no test coverage detected