| 627 | } |
| 628 | |
| 629 | vtkCellAttribute* vtkCellGrid::GetCellAttribute(vtkStringToken::Hash hash) |
| 630 | { |
| 631 | auto it = this->Attributes.find(hash); |
| 632 | if (it == this->Attributes.end()) |
| 633 | { |
| 634 | return nullptr; |
| 635 | } |
| 636 | return it->second; |
| 637 | } |
| 638 | |
| 639 | vtkCellAttribute* vtkCellGrid::GetCellAttributeById(int attributeId) |
| 640 | { |