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

Method GetNumberOfBuckets

Common/DataModel/vtkCellLocator.cxx:661–672  ·  view source on GitHub ↗

------------------------------------------------------------------------------ number of buckets available

Source from the content-addressed store, hash-verified

659//------------------------------------------------------------------------------
660// number of buckets available
661int vtkCellLocator::GetNumberOfBuckets()
662{
663 if (this->Tree)
664 {
665 return this->NumberOfOctants;
666 }
667 else
668 {
669 vtkWarningMacro(<< "Attempting to access Tree before Locator has been built");
670 return 0;
671 }
672}
673
674//------------------------------------------------------------------------------
675// Get the cells in a bucket.

Callers 5

RequestDataMethod · 0.80
TestPointSetStreamerFunction · 0.80
MergePointsFunction · 0.80
RequestDataMethod · 0.80

Calls

no outgoing calls

Tested by 1

TestPointSetStreamerFunction · 0.64