| 186 | } |
| 187 | |
| 188 | void mitk::AffineBaseDataInteractor3D::RotateUpModifierKey(mitk::StateMachineAction *, |
| 189 | mitk::InteractionEvent *interactionEvent) |
| 190 | { |
| 191 | float stepSize = 1.0f; |
| 192 | this->GetDataNode()->GetFloatProperty(rotationStepSizePropertyName, stepSize); |
| 193 | this->RotateGeometry(stepSize, 1, this->GetUpdatedTimeGeometry(interactionEvent)); |
| 194 | } |
| 195 | |
| 196 | void mitk::AffineBaseDataInteractor3D::RotateDownModifierKey(mitk::StateMachineAction *, |
| 197 | mitk::InteractionEvent *interactionEvent) |
nothing calls this directly
no test coverage detected