| 328 | } |
| 329 | |
| 330 | void mitk::AffineBaseDataInteractor3D::SelectObject(StateMachineAction *, InteractionEvent *) |
| 331 | { |
| 332 | DataNode::Pointer node = this->GetDataNode(); |
| 333 | |
| 334 | if (node.IsNull()) |
| 335 | return; |
| 336 | |
| 337 | mitk::ColorProperty::Pointer selectedColor = |
| 338 | dynamic_cast<mitk::ColorProperty *>(node->GetProperty(selectedColorPropertyName)); |
| 339 | if (selectedColor.IsNotNull()) |
| 340 | { |
| 341 | node->GetPropertyList()->SetProperty("color", selectedColor); |
| 342 | } |
| 343 | RenderingManager::GetInstance()->RequestUpdateAll(); |
| 344 | |
| 345 | return; |
| 346 | } |
| 347 | |
| 348 | void mitk::AffineBaseDataInteractor3D::DeselectObject(StateMachineAction *, InteractionEvent *) |
| 349 | { |
nothing calls this directly
no test coverage detected