------------------------------------------------------------------------------
| 133 | |
| 134 | //------------------------------------------------------------------------------ |
| 135 | void vtkGraphLayoutView::SetVertexLabelVisibility(bool vis) |
| 136 | { |
| 137 | this->VertexLabelsRequested = vis; |
| 138 | // Don't update the visibility of the vertex label actor while an interaction |
| 139 | // is in progress |
| 140 | if (!this->Interacting) |
| 141 | this->GetGraphRepresentation()->SetVertexLabelVisibility(vis); |
| 142 | } |
| 143 | |
| 144 | //------------------------------------------------------------------------------ |
| 145 | bool vtkGraphLayoutView::GetVertexLabelVisibility() |