------------------------------------------------------------------------------
| 196 | |
| 197 | //------------------------------------------------------------------------------ |
| 198 | void vtkOctreePointLocator::SetDataBoundsToSpatialBounds(vtkOctreePointLocatorNode* octant) |
| 199 | { |
| 200 | octant->SetMinDataBounds(octant->GetMinBounds()); |
| 201 | octant->SetMaxDataBounds(octant->GetMaxBounds()); |
| 202 | |
| 203 | if (octant->GetChild(0)) |
| 204 | { |
| 205 | for (int i = 0; i < 8; i++) |
| 206 | { |
| 207 | vtkOctreePointLocator::SetDataBoundsToSpatialBounds(octant->GetChild(i)); |
| 208 | } |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | //------------------------------------------------------------------------------ |
| 213 | int vtkOctreePointLocator::DivideTest(int size, int level) |
nothing calls this directly
no test coverage detected