| 121 | } |
| 122 | |
| 123 | void mitk::AffineBaseDataInteractor3D::TranslateRightKey(mitk::StateMachineAction *, |
| 124 | mitk::InteractionEvent *interactionEvent) |
| 125 | { |
| 126 | float stepSize = 1.0f; |
| 127 | this->GetDataNode()->GetFloatProperty(translationStepSizePropertyName, stepSize); |
| 128 | mitk::Vector3D movementVector; |
| 129 | movementVector.Fill(0.0); |
| 130 | movementVector.SetElement(0, stepSize); |
| 131 | this->TranslateGeometry(movementVector, this->GetUpdatedTimeGeometry(interactionEvent)); |
| 132 | } |
| 133 | |
| 134 | void mitk::AffineBaseDataInteractor3D::TranslateUpModifierKey(mitk::StateMachineAction *, |
| 135 | mitk::InteractionEvent *interactionEvent) |
nothing calls this directly
no test coverage detected