| 400 | } |
| 401 | |
| 402 | void mitk::PointSetDataInteractor::UpdatePointSet(mitk::StateMachineAction *, mitk::InteractionEvent *) |
| 403 | { |
| 404 | auto *pointSet = dynamic_cast<mitk::PointSet *>(this->GetDataNode()->GetData()); |
| 405 | if (pointSet == nullptr) |
| 406 | { |
| 407 | MITK_ERROR << "PointSetDataInteractor:: No valid point set ."; |
| 408 | return; |
| 409 | } |
| 410 | |
| 411 | m_PointSet = pointSet; |
| 412 | } |
| 413 | |
| 414 | void mitk::PointSetDataInteractor::Abort(StateMachineAction *, InteractionEvent *interactionEvent) |
| 415 | { |
nothing calls this directly
no test coverage detected