| 178 | } |
| 179 | |
| 180 | void mitk::AffineBaseDataInteractor3D::RotateRightKey(mitk::StateMachineAction *, |
| 181 | mitk::InteractionEvent *interactionEvent) |
| 182 | { |
| 183 | float stepSize = 1.0f; |
| 184 | this->GetDataNode()->GetFloatProperty(rotationStepSizePropertyName, stepSize); |
| 185 | this->RotateGeometry(stepSize, 2, this->GetUpdatedTimeGeometry(interactionEvent)); |
| 186 | } |
| 187 | |
| 188 | void mitk::AffineBaseDataInteractor3D::RotateUpModifierKey(mitk::StateMachineAction *, |
| 189 | mitk::InteractionEvent *interactionEvent) |
nothing calls this directly
no test coverage detected