------------------------------------------------------------------------------ Return the length of the diagonal of the bounding box.
| 291 | //------------------------------------------------------------------------------ |
| 292 | // Return the length of the diagonal of the bounding box. |
| 293 | double vtkDataSet::GetLength() |
| 294 | { |
| 295 | return std::sqrt(this->GetLength2()); |
| 296 | } |
| 297 | |
| 298 | //------------------------------------------------------------------------------ |
| 299 | // Return the squared length of the diagonal of the bounding box. |
nothing calls this directly
no test coverage detected