* The view calls this method when a selection occurs. * The representation takes this selection and converts it into * a selection on its data by calling ConvertSelection, * then calls UpdateSelection with the converted selection. * Subclasses should not override this method, but should instead * override ConvertSelection. * The optional third argument specifies whether the selec
| 90 | * added to the previous selection on this representation. |
| 91 | */ |
| 92 | void Select(vtkView* view, vtkSelection* selection) { this->Select(view, selection, false); } |
| 93 | void Select(vtkView* view, vtkSelection* selection, bool extend); |
| 94 | |
| 95 | /** |