| 161 | } |
| 162 | |
| 163 | void mitk::AffineBaseDataInteractor3D::RotateDownKey(mitk::StateMachineAction *, |
| 164 | mitk::InteractionEvent *interactionEvent) |
| 165 | { |
| 166 | float stepSize = 1.0f; |
| 167 | this->GetDataNode()->GetFloatProperty(rotationStepSizePropertyName, stepSize); |
| 168 | this->RotateGeometry(stepSize, 0, this->GetUpdatedTimeGeometry(interactionEvent)); |
| 169 | return; |
| 170 | } |
| 171 | |
| 172 | void mitk::AffineBaseDataInteractor3D::RotateLeftKey(mitk::StateMachineAction *, |
| 173 | mitk::InteractionEvent *interactionEvent) |
nothing calls this directly
no test coverage detected