------------------------------------------------------------------------------ Return a pointer to the geometry bounding box in the form (xmin,xmax, ymin,ymax, zmin,zmax).
| 251 | // Return a pointer to the geometry bounding box in the form |
| 252 | // (xmin,xmax, ymin,ymax, zmin,zmax). |
| 253 | double* vtkDataSet::GetBounds() |
| 254 | { |
| 255 | this->ComputeBounds(); |
| 256 | return this->Bounds; |
| 257 | } |
| 258 | |
| 259 | //------------------------------------------------------------------------------ |
| 260 | void vtkDataSet::GetBounds(double bounds[6]) |
no test coverage detected