------------------------------------------------------------------------------
| 213 | |
| 214 | //------------------------------------------------------------------------------ |
| 215 | vtkIncrementalOctreeNode* vtkIncrementalOctreePointLocator::GetLeafContainer( |
| 216 | vtkIncrementalOctreeNode* node, const double pnt[3]) |
| 217 | { |
| 218 | return ((node->IsLeaf()) ? node |
| 219 | : this->GetLeafContainer(node->GetChild(node->GetChildIndex(pnt)), pnt)); |
| 220 | } |
| 221 | |
| 222 | //------------------------------------------------------------------------------ |
| 223 | vtkIdType vtkIncrementalOctreePointLocator::FindClosestInsertedPoint(const double x[3]) |
no test coverage detected