Check if an attribute exists.
(self, name)
| 66 | self.__mesh.add_attribute(name) |
| 67 | |
| 68 | def has_attribute(self, name): |
| 69 | """ Check if an attribute exists. |
| 70 | """ |
| 71 | return self.__mesh.has_attribute(name) |
| 72 | |
| 73 | def get_attribute(self, name): |
| 74 | """ Return attribute values in a flattened array. |
no outgoing calls