------------------------------------------------------------------------------
| 264 | |
| 265 | //------------------------------------------------------------------------------ |
| 266 | void vtkBoxRepresentation::StartWidgetInteraction(double e[2]) |
| 267 | { |
| 268 | // Store the start position |
| 269 | this->StartEventPosition[0] = e[0]; |
| 270 | this->StartEventPosition[1] = e[1]; |
| 271 | this->StartEventPosition[2] = 0.0; |
| 272 | |
| 273 | // Store the start position |
| 274 | this->LastEventPosition[0] = e[0]; |
| 275 | this->LastEventPosition[1] = e[1]; |
| 276 | this->LastEventPosition[2] = 0.0; |
| 277 | |
| 278 | this->ComputeInteractionState(static_cast<int>(e[0]), static_cast<int>(e[1]), 0); |
| 279 | } |
| 280 | |
| 281 | void vtkBoxRepresentation::StartComplexInteraction( |
| 282 | vtkRenderWindowInteractor*, vtkAbstractWidget*, unsigned long, void* calldata) |
no test coverage detected