------------------------------------------------------------------------------
| 407 | |
| 408 | //------------------------------------------------------------------------------ |
| 409 | void vtkPolyData::GetCellsBounds(double bounds[6]) |
| 410 | { |
| 411 | this->ComputeCellsBounds(); |
| 412 | for (int i = 0; i < 6; i++) |
| 413 | { |
| 414 | bounds[i] = this->CellsBounds[i]; |
| 415 | } |
| 416 | } |
| 417 | |
| 418 | //------------------------------------------------------------------------------ |
| 419 | // Set the cell array defining vertices. |
no test coverage detected