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

Method GetRegionBounds

Common/DataModel/vtkKdTree.cxx:504–515  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

502
503//------------------------------------------------------------------------------
504void vtkKdTree::GetRegionBounds(int regionID, double bounds[6])
505{
506 if ((regionID < 0) || (regionID >= this->NumberOfRegions))
507 {
508 vtkErrorMacro(<< "vtkKdTree::GetRegionBounds invalid region");
509 return;
510 }
511
512 vtkKdNode* node = this->RegionList[regionID];
513
514 node->GetBounds(bounds);
515}
516
517//------------------------------------------------------------------------------
518void vtkKdTree::GetRegionDataBounds(int regionID, double bounds[6])

Callers

nothing calls this directly

Calls 1

GetBoundsMethod · 0.45

Tested by

no test coverage detected