------------------------------------------------------------------------------
| 131 | |
| 132 | //------------------------------------------------------------------------------ |
| 133 | vtkAssemblyPath* vtkWidgetRepresentation::GetAssemblyPath( |
| 134 | double X, double Y, double Z, vtkAbstractPropPicker* picker) |
| 135 | { |
| 136 | vtkPickingManager* pm = this->GetPickingManager(); |
| 137 | if (!this->PickingManaged || !pm) |
| 138 | { |
| 139 | picker->Pick(X, Y, Z, this->Renderer); |
| 140 | return picker->GetPath(); |
| 141 | } |
| 142 | |
| 143 | return pm->GetAssemblyPath(X, Y, 0., picker, this->Renderer, this); |
| 144 | } |
| 145 | |
| 146 | //------------------------------------------------------------------------------ |
| 147 | vtkAssemblyPath* vtkWidgetRepresentation::GetAssemblyPath3DPoint( |
no test coverage detected