| 93 | } |
| 94 | |
| 95 | void mitk::ColorBarAnnotation::SetLookupTable(vtkSmartPointer<vtkLookupTable> table) |
| 96 | { |
| 97 | mitk::LookupTable::Pointer lut = mitk::LookupTable::New(); |
| 98 | mitk::LookupTableProperty::Pointer prop = mitk::LookupTableProperty::New(lut); |
| 99 | lut->SetVtkLookupTable(table); |
| 100 | prop->SetLookupTable(lut); |
| 101 | SetProperty("ColorBarAnnotation.LookupTable", prop.GetPointer()); |
| 102 | } |
| 103 | |
| 104 | vtkSmartPointer<vtkLookupTable> mitk::ColorBarAnnotation::GetLookupTable() const |
| 105 | { |
no test coverage detected