------------------------------------------------------------------------------
| 493 | |
| 494 | //------------------------------------------------------------------------------ |
| 495 | void vtkGraphLayoutView::ZoomToSelection() |
| 496 | { |
| 497 | double bounds[6]; |
| 498 | this->GetGraphRepresentation()->ComputeSelectedGraphBounds(bounds); |
| 499 | this->Renderer->ResetCamera(bounds); |
| 500 | } |
| 501 | |
| 502 | //------------------------------------------------------------------------------ |
| 503 | void vtkGraphLayoutView::PrintSelf(ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected