------------------------------------------------------------------------------ Compute cell bounding box (xmin,xmax,ymin,ymax,zmin,zmax). Copy result into user provided array.
| 473 | // Compute cell bounding box (xmin,xmax,ymin,ymax,zmin,zmax). Copy result into |
| 474 | // user provided array. |
| 475 | void vtkCell::GetBounds(double bounds[6]) |
| 476 | { |
| 477 | vtkBoundingBox::ComputeBounds(this->Points, bounds); |
| 478 | } |
| 479 | |
| 480 | //---------------------------------------------------------------------------- |
| 481 | // Compute cell bounding box (xmin,xmax,ymin,ymax,zmin,zmax). Return pointer |
no test coverage detected