------------------------------------------------------------------------------
| 493 | |
| 494 | //------------------------------------------------------------------------------ |
| 495 | void vtkKdTree::GetBounds(double* bounds) |
| 496 | { |
| 497 | if (this->Top) |
| 498 | { |
| 499 | this->Top->GetBounds(bounds); |
| 500 | } |
| 501 | } |
| 502 | |
| 503 | //------------------------------------------------------------------------------ |
| 504 | void vtkKdTree::GetRegionBounds(int regionID, double bounds[6]) |
no outgoing calls
no test coverage detected