| 159 | } |
| 160 | |
| 161 | bool vtkCellAttribute::SetCellTypeInfo(vtkStringToken cellType, const CellTypeInfo& cellTypeInfo) |
| 162 | { |
| 163 | auto it = this->AllArrays.find(cellType); |
| 164 | if (it == this->AllArrays.end() || it->second != cellTypeInfo) |
| 165 | { |
| 166 | this->AllArrays[cellType] = cellTypeInfo; |
| 167 | this->Modified(); |
| 168 | return true; |
| 169 | } |
| 170 | return false; |
| 171 | } |
| 172 | |
| 173 | bool vtkCellAttribute::SetColormap(vtkScalarsToColors* colormap) |
| 174 | { |