| 132 | } |
| 133 | |
| 134 | void mitk::LookupTable::SetVtkLookupTable(vtkSmartPointer<vtkLookupTable> lut) |
| 135 | { |
| 136 | if ((!lut) || (m_LookupTable == lut)) |
| 137 | { |
| 138 | return; |
| 139 | } |
| 140 | |
| 141 | m_LookupTable = lut; |
| 142 | this->Modified(); |
| 143 | } |
| 144 | |
| 145 | void mitk::LookupTable::SetType(const mitk::LookupTable::LookupTableType type) |
| 146 | { |