------------------------------------------------------------------------------
| 389 | |
| 390 | //------------------------------------------------------------------------------ |
| 391 | void vtkAMRDataObject::GetMax(double max[3]) |
| 392 | { |
| 393 | const double* bb = this->GetBounds(); |
| 394 | max[0] = bb[1]; |
| 395 | max[1] = bb[3]; |
| 396 | max[2] = bb[5]; |
| 397 | } |
| 398 | |
| 399 | // VTK_DEPRECATED_IN_9_6_0 |
| 400 | //------------------------------------------------------------------------------ |
no test coverage detected