| 133 | } |
| 134 | |
| 135 | vtkCellAttribute::CellTypeInfo vtkCellAttribute::GetCellTypeInfo(vtkStringToken cellType) const |
| 136 | { |
| 137 | auto it = this->AllArrays.find(cellType); |
| 138 | if (it == this->AllArrays.end()) |
| 139 | { |
| 140 | return {}; |
| 141 | } |
| 142 | return it->second; |
| 143 | } |
| 144 | |
| 145 | vtkAbstractArray* vtkCellAttribute::GetArrayForCellTypeAndRole( |
| 146 | vtkStringToken cellType, vtkStringToken arrayRole) const |