------------------------------------------------------------------------------
| 344 | |
| 345 | //------------------------------------------------------------------------------ |
| 346 | double vtkBoundingBox::GetMaxLength() const |
| 347 | { |
| 348 | double l[3]; |
| 349 | this->GetLengths(l); |
| 350 | if (l[0] > l[1]) |
| 351 | { |
| 352 | if (l[0] > l[2]) |
| 353 | { |
| 354 | return l[0]; |
| 355 | } |
| 356 | return l[2]; |
| 357 | } |
| 358 | else if (l[1] > l[2]) |
| 359 | { |
| 360 | return l[1]; |
| 361 | } |
| 362 | return l[2]; |
| 363 | } |
| 364 | |
| 365 | //------------------------------------------------------------------------------ |
| 366 | double vtkBoundingBox::GetDiagonalLength2() const |
no test coverage detected