------------------------------------------------------------------------------
| 148 | |
| 149 | //------------------------------------------------------------------------------ |
| 150 | void vtkOctreePointLocator::GetBounds(double* bounds) |
| 151 | { |
| 152 | if (this->Top) |
| 153 | { |
| 154 | this->Top->GetBounds(bounds); |
| 155 | } |
| 156 | } |
| 157 | |
| 158 | //------------------------------------------------------------------------------ |
| 159 | double* vtkOctreePointLocator::GetBounds() |
no test coverage detected