------------------------------------------------------------------------------
| 204 | |
| 205 | //------------------------------------------------------------------------------ |
| 206 | void vtkVRMenuWidget::MoveAction(vtkAbstractWidget* w) |
| 207 | { |
| 208 | vtkVRMenuWidget* self = reinterpret_cast<vtkVRMenuWidget*>(w); |
| 209 | |
| 210 | if (self->WidgetState != vtkVRMenuWidget::Active) |
| 211 | { |
| 212 | return; |
| 213 | } |
| 214 | |
| 215 | self->WidgetRep->ComplexInteraction( |
| 216 | self->Interactor, self, vtkWidgetEvent::Move3D, self->CallData); |
| 217 | } |
| 218 | |
| 219 | //------------------------------------------------------------------------------ |
| 220 | void vtkVRMenuWidget::SetRepresentation(vtkVRMenuRepresentation* rep) |
nothing calls this directly
no test coverage detected