| 174 | } |
| 175 | |
| 176 | vtkDataSetAttributes* vtkCellGrid::FindAttributes(int type) const |
| 177 | { |
| 178 | auto it = this->ArrayGroups.find(type); |
| 179 | return it == this->ArrayGroups.end() ? nullptr : it->second; |
| 180 | } |
| 181 | |
| 182 | vtkDataSetAttributes* vtkCellGrid::FindAttributes(vtkStringToken type) const |
| 183 | { |