------------------------------------------------------------------------------
| 267 | |
| 268 | //------------------------------------------------------------------------------ |
| 269 | void vtkDataRepresentation::UpdateSelection(vtkSelection* selection, bool extend) |
| 270 | { |
| 271 | if (extend) |
| 272 | { |
| 273 | selection->Union(this->AnnotationLinkInternal->GetCurrentSelection()); |
| 274 | } |
| 275 | this->AnnotationLinkInternal->SetCurrentSelection(selection); |
| 276 | this->InvokeEvent(vtkCommand::SelectionChangedEvent, reinterpret_cast<void*>(selection)); |
| 277 | } |
| 278 | |
| 279 | //------------------------------------------------------------------------------ |
| 280 | void vtkDataRepresentation::Annotate(vtkView* view, vtkAnnotationLayers* annotations, bool extend) |
no test coverage detected