------------------------------------------------------------------------------
| 2793 | |
| 2794 | //------------------------------------------------------------------------------ |
| 2795 | void vtkCubeAxesActor::GetRenderedBounds(double* b) |
| 2796 | { |
| 2797 | vtkBoundingBox bbox(this->GetBounds()); // Data bounds |
| 2798 | |
| 2799 | // Make a heuristic on the final bounds that embed test labels |
| 2800 | // Just inflate the box based on its max length |
| 2801 | bbox.Inflate(bbox.GetMaxLength()); |
| 2802 | |
| 2803 | bbox.GetBounds(b); |
| 2804 | } |
| 2805 | |
| 2806 | //------------------------------------------------------------------------------ |
| 2807 | double* vtkCubeAxesActor::GetRenderedBounds() |
nothing calls this directly
no test coverage detected