Add an attribute to mesh.
(self, name)
| 61 | self.__mesh = raw_mesh |
| 62 | |
| 63 | def add_attribute(self, name): |
| 64 | """ Add an attribute to mesh. |
| 65 | """ |
| 66 | self.__mesh.add_attribute(name) |
| 67 | |
| 68 | def has_attribute(self, name): |
| 69 | """ Check if an attribute exists. |
no outgoing calls
no test coverage detected