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

Method FindPointsInArea

Common/DataModel/vtkOctreePointLocator.cxx:1185–1193  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1183
1184//------------------------------------------------------------------------------
1185void vtkOctreePointLocator::FindPointsInArea(double* area, vtkIdTypeArray* ids, bool clearArray)
1186{
1187 if (clearArray)
1188 {
1189 ids->Reset();
1190 }
1191 this->BuildLocator();
1192 this->FindPointsInArea(this->Top, area, ids);
1193}
1194
1195//------------------------------------------------------------------------------
1196void vtkOctreePointLocator::FindPointsInArea(

Callers

nothing calls this directly

Calls 7

BuildLocatorMethod · 0.95
AddAllPointsInRegionMethod · 0.95
ResetMethod · 0.45
GetBoundsMethod · 0.45
GetChildMethod · 0.45
GetNumberOfPointsMethod · 0.45
InsertNextValueMethod · 0.45

Tested by

no test coverage detected