| 154 | } |
| 155 | |
| 156 | void mitk::AffineBaseDataInteractor3D::RotateUpKey(mitk::StateMachineAction *, mitk::InteractionEvent *interactionEvent) |
| 157 | { |
| 158 | float stepSize = 1.0f; |
| 159 | this->GetDataNode()->GetFloatProperty(rotationStepSizePropertyName, stepSize); |
| 160 | this->RotateGeometry(-stepSize, 0, this->GetUpdatedTimeGeometry(interactionEvent)); |
| 161 | } |
| 162 | |
| 163 | void mitk::AffineBaseDataInteractor3D::RotateDownKey(mitk::StateMachineAction *, |
| 164 | mitk::InteractionEvent *interactionEvent) |
nothing calls this directly
no test coverage detected