------------------------------------------------------------------------------
| 187 | |
| 188 | //------------------------------------------------------------------------------ |
| 189 | vtkAssemblyPath* vtkInteractorObserver::GetAssemblyPath( |
| 190 | double X, double Y, double Z, vtkAbstractPropPicker* picker) |
| 191 | { |
| 192 | if (!this->GetPickingManager()) |
| 193 | { |
| 194 | picker->Pick(X, Y, Z, this->CurrentRenderer); |
| 195 | return picker->GetPath(); |
| 196 | } |
| 197 | |
| 198 | return this->GetPickingManager()->GetAssemblyPath(X, Y, Z, picker, this->CurrentRenderer, this); |
| 199 | } |
| 200 | |
| 201 | //------------------------------------------------------------------------------ |
| 202 | void vtkInteractorObserver::ProcessEvents( |
nothing calls this directly
no test coverage detected