| 422 | GetPropertyList(renderer)->SetProperty(propertyKey, mitk::IntProperty::New(intValue)); |
| 423 | } |
| 424 | void mitk::DataNode::SetBoolProperty(const char *propertyKey, |
| 425 | bool boolValue, |
| 426 | const mitk::BaseRenderer *renderer /*=nullptr*/) |
| 427 | { |
| 428 | GetPropertyList(renderer)->SetProperty(propertyKey, mitk::BoolProperty::New(boolValue)); |
| 429 | } |
| 430 | |
| 431 | void mitk::DataNode::SetFloatProperty(const char *propertyKey, |
| 432 | float floatValue, |
no test coverage detected