| 89 | } |
| 90 | |
| 91 | void mitk::AffineBaseDataInteractor3D::TranslateUpKey(StateMachineAction *, InteractionEvent *interactionEvent) |
| 92 | { |
| 93 | float stepSize = 1.0f; |
| 94 | this->GetDataNode()->GetFloatProperty(translationStepSizePropertyName, stepSize); |
| 95 | mitk::Vector3D movementVector; |
| 96 | movementVector.Fill(0.0); |
| 97 | movementVector.SetElement(2, stepSize); |
| 98 | this->TranslateGeometry(movementVector, this->GetUpdatedTimeGeometry(interactionEvent)); |
| 99 | } |
| 100 | |
| 101 | void mitk::AffineBaseDataInteractor3D::TranslateDownKey(mitk::StateMachineAction *, |
| 102 | mitk::InteractionEvent *interactionEvent) |
nothing calls this directly
no test coverage detected