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

Method FindDistributedPoints

Common/DataModel/vtkPointLocator.cxx:438–446  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

436
437//------------------------------------------------------------------------------
438void vtkPointLocator::FindDistributedPoints(
439 int N, double x, double y, double z, vtkIdList* result, int M)
440{
441 double p[3];
442 p[0] = x;
443 p[1] = y;
444 p[2] = z;
445 this->FindDistributedPoints(N, p, result, M);
446}
447
448//------------------------------------------------------------------------------
449static int GetOctant(const double x[3], const double pt[3])

Callers

nothing calls this directly

Calls 15

BuildLocatorMethod · 0.95
GetBucketNeighborsMethod · 0.95
GetOverlappingBucketsMethod · 0.95
GetOctantFunction · 0.85
GetMinFunction · 0.85
GetMaxFunction · 0.85
InsertNextIdMethod · 0.80
maxFunction · 0.50
sortFunction · 0.50
sqrtFunction · 0.50
ResetMethod · 0.45
GetBucketIndicesMethod · 0.45

Tested by

no test coverage detected