------------------------------------------------------------------------------
| 173 | |
| 174 | //------------------------------------------------------------------------------ |
| 175 | void vtkGraphLayoutView::SetEdgeLabelVisibility(bool vis) |
| 176 | { |
| 177 | this->EdgeLabelsRequested = vis; |
| 178 | // Don't update the visibility of the edge label actor while an interaction |
| 179 | // is in progress |
| 180 | if (!this->Interacting) |
| 181 | this->GetGraphRepresentation()->SetEdgeLabelVisibility(vis); |
| 182 | } |
| 183 | |
| 184 | //------------------------------------------------------------------------------ |
| 185 | bool vtkGraphLayoutView::GetEdgeLabelVisibility() |
no test coverage detected