------------------------------------------------------------------------------ Return a pointer to the geometry bounding box in the form (xmin,xmax, ymin,ymax, zmin,zmax). The return value is VOLATILE. \post result_exists: result!=0
| 110 | // The return value is VOLATILE. |
| 111 | // \post result_exists: result!=0 |
| 112 | double* vtkGenericDataSet::GetBounds() |
| 113 | { |
| 114 | this->ComputeBounds(); |
| 115 | return this->Bounds; |
| 116 | } |
| 117 | |
| 118 | //------------------------------------------------------------------------------ |
| 119 | // Description: |
nothing calls this directly
no test coverage detected