| 170 | } |
| 171 | |
| 172 | void mitk::AffineBaseDataInteractor3D::RotateLeftKey(mitk::StateMachineAction *, |
| 173 | mitk::InteractionEvent *interactionEvent) |
| 174 | { |
| 175 | float stepSize = 1.0f; |
| 176 | this->GetDataNode()->GetFloatProperty(rotationStepSizePropertyName, stepSize); |
| 177 | this->RotateGeometry(-stepSize, 2, this->GetUpdatedTimeGeometry(interactionEvent)); |
| 178 | } |
| 179 | |
| 180 | void mitk::AffineBaseDataInteractor3D::RotateRightKey(mitk::StateMachineAction *, |
| 181 | mitk::InteractionEvent *interactionEvent) |
nothing calls this directly
no test coverage detected