------------------------------------------------------------------------------
| 964 | |
| 965 | //------------------------------------------------------------------------------ |
| 966 | bool vtkDataAssembly::HasAttribute(int id, const char* name) const |
| 967 | { |
| 968 | const auto& internals = (*this->Internals); |
| 969 | const auto node = internals.FindNode(id); |
| 970 | return (node.attribute(name)); |
| 971 | } |
| 972 | |
| 973 | //------------------------------------------------------------------------------ |
| 974 | void vtkDataAssembly::SetAttribute(int id, const char* name, const char* value) |